|
@@ 1316-1318 (lines=3) @@
|
| 1313 |
|
if ($controllerName == '/') { |
| 1314 |
|
$exists = true; |
| 1315 |
|
} |
| 1316 |
|
if (file_exists($config->get('app.root').'Controller/'.$controllerName.'.php')) { |
| 1317 |
|
$exists = true; |
| 1318 |
|
} |
| 1319 |
|
if (file_exists($config->get('app.root').'Alpha/Controller/'.$controllerName.'.php')) { |
| 1320 |
|
$exists = true; |
| 1321 |
|
} |
|
@@ 1319-1321 (lines=3) @@
|
| 1316 |
|
if (file_exists($config->get('app.root').'Controller/'.$controllerName.'.php')) { |
| 1317 |
|
$exists = true; |
| 1318 |
|
} |
| 1319 |
|
if (file_exists($config->get('app.root').'Alpha/Controller/'.$controllerName.'.php')) { |
| 1320 |
|
$exists = true; |
| 1321 |
|
} |
| 1322 |
|
|
| 1323 |
|
self::$logger->debug('<<checkControllerDefExists ['.$exists.']'); |
| 1324 |
|
|