If we register the controller in the module
angular.module('app.module1').controller('thisNameController', controller) function controller(){} and get access to it through
angular.module('app.module1').config(configLoad) ... .state{ controller: 'thisNameController', controllerAs: 'vm' } Should the controller name be unique within this module or the entire application? For example, can other controllers have controllers with the same name or will the one that will be registered last be called?