Skip to content

Commit 3de806f

Browse files
committed
Better path support.
Signed-off-by: Michael Gooden <[email protected]>
1 parent bde4857 commit 3de806f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/Reflection/ZendMvc/PluginClassReflectionExtension.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,9 @@ public function setBroker(Broker $broker)
4545
public function initFramework()
4646
{
4747
// Cribbed right out of the Application class for ZF3
48-
$appConfig = require __DIR__ . '/../../../../config/application.config.php';
49-
if (file_exists(__DIR__ . '/../config/development.config.php')) {
50-
$appConfig = ArrayUtils::merge($appConfig, require __DIR__ . '/../config/development.config.php');
48+
$appConfig = require __DIR__ . '/../../../../../../config/application.config.php';
49+
if (file_exists(__DIR__ . '/../../../../../../config/development.config.php')) {
50+
$appConfig = ArrayUtils::merge($appConfig, require __DIR__ . '/../../../../../../config/development.config.php');
5151
}
5252
$smConfig = isset($appConfig['service_manager']) ? $appConfig['service_manager'] : [];
5353
$smConfig = new Service\ServiceManagerConfig($smConfig);

0 commit comments

Comments
 (0)