Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Commit 4b59373

Browse files
committed
CS fixes in Zend_Application_Module_Autoloader
1 parent c5f5228 commit 4b59373

File tree

1 file changed

+36
-34
lines changed

1 file changed

+36
-34
lines changed

library/Zend/Application/Module/Autoloader.php

Lines changed: 36 additions & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -54,40 +54,42 @@ public function __construct($options)
5454
public function initDefaultResourceTypes()
5555
{
5656
$basePath = $this->getBasePath();
57-
$this->addResourceTypes(array(
58-
'dbtable' => array(
59-
'namespace' => 'Model_DbTable',
60-
'path' => 'models/DbTable',
61-
),
62-
'mappers' => array(
63-
'namespace' => 'Model_Mapper',
64-
'path' => 'models/mappers',
65-
),
66-
'form' => array(
67-
'namespace' => 'Form',
68-
'path' => 'forms',
69-
),
70-
'model' => array(
71-
'namespace' => 'Model',
72-
'path' => 'models',
73-
),
74-
'plugin' => array(
75-
'namespace' => 'Plugin',
76-
'path' => 'plugins',
77-
),
78-
'service' => array(
79-
'namespace' => 'Service',
80-
'path' => 'services',
81-
),
82-
'viewhelper' => array(
83-
'namespace' => 'View_Helper',
84-
'path' => 'views/helpers',
85-
),
86-
'viewfilter' => array(
87-
'namespace' => 'View_Filter',
88-
'path' => 'views/filters',
89-
),
90-
));
57+
$this->addResourceTypes(
58+
array(
59+
'dbtable' => array(
60+
'namespace' => 'Model_DbTable',
61+
'path' => 'models/DbTable',
62+
),
63+
'mappers' => array(
64+
'namespace' => 'Model_Mapper',
65+
'path' => 'models/mappers',
66+
),
67+
'form' => array(
68+
'namespace' => 'Form',
69+
'path' => 'forms',
70+
),
71+
'model' => array(
72+
'namespace' => 'Model',
73+
'path' => 'models',
74+
),
75+
'plugin' => array(
76+
'namespace' => 'Plugin',
77+
'path' => 'plugins',
78+
),
79+
'service' => array(
80+
'namespace' => 'Service',
81+
'path' => 'services',
82+
),
83+
'viewhelper' => array(
84+
'namespace' => 'View_Helper',
85+
'path' => 'views/helpers',
86+
),
87+
'viewfilter' => array(
88+
'namespace' => 'View_Filter',
89+
'path' => 'views/filters',
90+
),
91+
)
92+
);
9193
$this->setDefaultResourceType('model');
9294
}
9395
}

0 commit comments

Comments
 (0)