Without Classy:
app.controller('AppCtrl',
['$scope', '$location', '$http',
function($scope, $location, $http) {
// ...
}]);
With Classy:
app.classy.controller({
name: 'AppCtrl',
inject: ['$scope', '$location', '$http'],
//...
});