getConfigurationFilePath() , $name , $this->getConfFileExtension()) ); } /** * * @Override */ public function getConfigurationFilePath() { return __DIR__ . '/../../../../../config'; } /** * * @Override */ public function getConfFileExtension() { return 'yml'; } /** * * @Override */ public function isExtended(Array $env) { return isset($env[self::EXTENDED_KEYWORD]); } /** * * @Override */ public function getExtendedEnvName(Array $env) { return $this->isExtended($env) ? $env[self::EXTENDED_KEYWORD] : null; } }