function PhoneListCtrl($scope, $http) {...} phonecatApp.controller('PhoneListCtrl', ['$scope', '$http', PhoneListCtrl]);
app.controller('categoryController', function($scope, $http){ $scope.productList = {}; });
app.controller('categoryController', function(t,c){t.productList={};});
var categoryController = function($scope, $http) {}; app.controller('categoryController', ['$scope', '$http', categoryController]);
app.controller('categoryController', ['$scope', '$http', function ($scope, $http) { $scope.productList = {}; }]);
app.controller('categoryController', ['$scope', '$http', function ($scope, $http) { $scope.productList = {}; }]);