@@ -28,7 +28,7 @@ |
||
| 28 | 28 | |
| 29 | 29 | foreach ($subdomains AS $prefix) { |
| 30 | 30 | |
| 31 | - Router::scope('/', ['prefix' => $prefix], function($routes) { |
|
| 31 | + Router::scope('/', ['prefix' => $prefix], function($routes) { |
|
| 32 | 32 | $routes->fallbacks('DashedRoute'); |
| 33 | 33 | |
| 34 | 34 | }); |
@@ -21,7 +21,7 @@ |
||
| 21 | 21 | |
| 22 | 22 | trait SubdomainRouteTrait { |
| 23 | 23 | |
| 24 | - private function _getSubdomains() { |
|
| 24 | + private function _getSubdomains () { |
|
| 25 | 25 | |
| 26 | 26 | $validConfiguration = Configure::check('Multidimensional/Subdomains.subdomains'); |
| 27 | 27 | |
@@ -20,7 +20,7 @@ discard block |
||
| 20 | 20 | |
| 21 | 21 | class SubdomainsInstallShell extends Shell { |
| 22 | 22 | |
| 23 | - public function main() { |
|
| 23 | + public function main () { |
|
| 24 | 24 | |
| 25 | 25 | $subdomains = array(); |
| 26 | 26 | |
@@ -138,7 +138,7 @@ discard block |
||
| 138 | 138 | |
| 139 | 139 | } |
| 140 | 140 | |
| 141 | - private function _modifyArray(array $array) { |
|
| 141 | + private function _modifyArray (array $array) { |
|
| 142 | 142 | |
| 143 | 143 | return array_combine(range(1, count($array)), array_values($array)); ; |
| 144 | 144 | |