diff --git a/src/Configuration/ContainerFactory.php b/src/Configuration/ContainerFactory.php index b4adfbaba..369c3ed5b 100644 --- a/src/Configuration/ContainerFactory.php +++ b/src/Configuration/ContainerFactory.php @@ -32,7 +32,7 @@ public static function buildFromConfiguration($path) ); // Load basic service file + custom user configuration - $loader = new YamlFileLoader($container, new FileLocator(__DIR__ . '/../../../resources/config')); + $loader = new YamlFileLoader($container, new FileLocator(__DIR__ . '/../../resources/config')); $loader->load('formatter.yml'); $loader->load('linters.yml'); $loader->load('parameters.yml'); diff --git a/src/Console/Helper/PathsHelper.php b/src/Console/Helper/PathsHelper.php index 7fc7fe2a1..568424a06 100644 --- a/src/Console/Helper/PathsHelper.php +++ b/src/Console/Helper/PathsHelper.php @@ -64,7 +64,7 @@ public function __construct( */ public function getGrumPHPPath() { - $path = __DIR__ . '/../../../../'; + $path = __DIR__ . '/../../..'; return $this->getRelativePath($path); }