I received this error upon upgrading from AngularJS 1.0.7 to 1.2.0rc1.
In my case it was because the file was minified with wrong scope. Use Array!
app.controller('StoreController', ['$http', function($http) { ... }]);
Coffee syntax:
app.controller 'StoreController', Array '$http', ($http) -> ...