Magestead\Helper\Config::getConfigFile PHP Метод

getConfigFile() защищенный Метод

protected getConfigFile ( Symfony\Component\Console\Output\OutputInterface $output ) : boolean | mixed
$output Symfony\Component\Console\Output\OutputInterface
Результат boolean | mixed
    protected function getConfigFile(OutputInterface $output)
    {
        $config = new Parser();
        try {
            return $config->parse($this->readConfigFile());
        } catch (ParseException $e) {
            $output->writeln('<error>Unable to parse the config file</error>');
        }
        return false;
    }