Skip to content

Commit

Permalink
Change: изменения в автосгенерированном списке классов для автозагрузки.
Browse files Browse the repository at this point in the history
  • Loading branch information
dmitry-kabanov committed Feb 11, 2012
1 parent eb41d05 commit ae37f1a
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 40 deletions.
40 changes: 20 additions & 20 deletions src/autoload.php
Expand Up @@ -5,26 +5,26 @@ function($class) {
if ($classes === null) {
$classes = array(
'bankaccount' => '/model/BankAccount.php',
'bankaccountcontroller' => '/controller/BankAccountController.php',
'bankaccountexception' => '/model/BankAccountException.php',
'bankaccountlistcontroller' => '/controller/BankAccountListController.php',
'bankaccountlistview' => '/view/BankAccountListView.php',
'bankaccountmapper' => '/persistence/BankAccountMapper.php',
'bankaccountview' => '/view/BankAccountView.php',
'controller' => '/framework/Controller.php',
'controllerexception' => '/framework/ControllerException.php',
'controllerfactory' => '/framework/ControllerFactory.php',
'frontcontroller' => '/framework/FrontController.php',
'hashmap' => '/framework/HashMap.php',
'identitymap' => '/framework/IdentityMap.php',
'mapperexception' => '/framework/MapperException.php',
'mapperfactory' => '/framework/MapperFactory.php',
'request' => '/framework/Request.php',
'response' => '/framework/Response.php',
'router' => '/framework/Router.php',
'routerexception' => '/framework/RouterException.php',
'view' => '/framework/View.php',
'viewfactory' => '/framework/ViewFactory.php'
'bankaccountcontroller' => '/controller/BankAccountController.php',
'bankaccountexception' => '/model/BankAccountException.php',
'bankaccountlistcontroller' => '/controller/BankAccountListController.php',
'bankaccountlistview' => '/view/BankAccountListView.php',
'bankaccountmapper' => '/persistence/BankAccountMapper.php',
'bankaccountview' => '/view/BankAccountView.php',
'controller' => '/framework/Controller.php',
'controllerexception' => '/framework/ControllerException.php',
'controllerfactory' => '/framework/ControllerFactory.php',
'frontcontroller' => '/framework/FrontController.php',
'hashmap' => '/framework/HashMap.php',
'identitymap' => '/framework/IdentityMap.php',
'mapperexception' => '/framework/MapperException.php',
'mapperfactory' => '/framework/MapperFactory.php',
'request' => '/framework/Request.php',
'response' => '/framework/Response.php',
'router' => '/framework/Router.php',
'routerexception' => '/framework/RouterException.php',
'view' => '/framework/View.php',
'viewfactory' => '/framework/ViewFactory.php'
);
}
$cn = strtolower($class);
Expand Down
40 changes: 20 additions & 20 deletions tests/autoload.php
Expand Up @@ -7,26 +7,26 @@ function($class) {
if ($classes === null) {
$classes = array(
'bankaccountcontrollertest' => '/unit/controller/BankAccountControllerTest.php',
'bankaccountlistcontrollertest' => '/unit/controller/BankAccountListControllerTest.php',
'bankaccountlistviewtest' => '/unit/view/BankAccountListViewTest.php',
'bankaccountmappertest' => '/unit/persistence/BankAccountMapperTest.php',
'bankaccounttest' => '/unit/model/BankAccountTest.php',
'bankaccountviewtest' => '/unit/view/BankAccountViewTest.php',
'controllerfactorytest' => '/unit/framework/ControllerFactoryTest.php',
'controllertestcase' => '/unit/ControllerTestCase.php',
'frontcontrollertest' => '/unit/framework/FrontControllerTest.php',
'hashmaptest' => '/unit/framework/HashMapTest.php',
'identitymaptest' => '/unit/framework/IdentityMapTest.php',
'mapperfactorytest' => '/unit/framework/MapperFactoryTest.php',
'requesttest' => '/unit/framework/RequestTest.php',
'responsetest' => '/unit/framework/ResponseTest.php',
'routertest' => '/unit/framework/RouterTest.php',
'testcontroller' => '/unit/framework/fixture/TestController.php',
'testview' => '/unit/framework/fixture/TestView.php',
'viewfactorytest' => '/unit/framework/ViewFactoryTest.php',
'viewtest' => '/unit/framework/ViewTest.php',
'viewtestcase' => '/unit/ViewTestCase.php',
'webtest' => '/system/WebTest.php'
'bankaccountlistcontrollertest' => '/unit/controller/BankAccountListControllerTest.php',
'bankaccountlistviewtest' => '/unit/view/BankAccountListViewTest.php',
'bankaccountmappertest' => '/unit/persistence/BankAccountMapperTest.php',
'bankaccounttest' => '/unit/model/BankAccountTest.php',
'bankaccountviewtest' => '/unit/view/BankAccountViewTest.php',
'controllerfactorytest' => '/unit/framework/ControllerFactoryTest.php',
'controllertestcase' => '/unit/ControllerTestCase.php',
'frontcontrollertest' => '/unit/framework/FrontControllerTest.php',
'hashmaptest' => '/unit/framework/HashMapTest.php',
'identitymaptest' => '/unit/framework/IdentityMapTest.php',
'mapperfactorytest' => '/unit/framework/MapperFactoryTest.php',
'requesttest' => '/unit/framework/RequestTest.php',
'responsetest' => '/unit/framework/ResponseTest.php',
'routertest' => '/unit/framework/RouterTest.php',
'testcontroller' => '/unit/framework/fixture/TestController.php',
'testview' => '/unit/framework/fixture/TestView.php',
'viewfactorytest' => '/unit/framework/ViewFactoryTest.php',
'viewtest' => '/unit/framework/ViewTest.php',
'viewtestcase' => '/unit/ViewTestCase.php',
'webtest' => '/system/WebTest.php'
);
}
$cn = strtolower($class);
Expand Down

0 comments on commit ae37f1a

Please sign in to comment.