mirror of
https://github.com/github/codeql.git
synced 2026-02-21 09:23:40 +01:00
5 lines
147 B
JavaScript
5 lines
147 B
JavaScript
angular.module('myModule', [])
|
|
.controller('MyController', ['$scope', function($scope) { // GOOD: explicit dependency name
|
|
// ...
|
|
}]);
|