diff --git a/bin/doctrine.php b/bin/doctrine.php index 6cc40f978..81edf294f 100644 --- a/bin/doctrine.php +++ b/bin/doctrine.php @@ -17,14 +17,7 @@ * . */ -$previousDir = null; -$currentDir = __DIR__; - -while ($previousDir !== $currentDir && !@include_once($currentDir . '/vendor/autoload.php')) { - $previousDir = $currentDir; - $currentDir = dirname($currentDir); -} - +(@include_once __DIR__ . '/../vendor/autoload.php') || @include_once __DIR__ . '/../../../autoload.php'; $configFile = getcwd() . DIRECTORY_SEPARATOR . 'cli-config.php'; $helperSet = null;