Altax\Console\Application::loadConfiguration PHP Method

loadConfiguration() protected method

Load configuration.
protected loadConfiguration ( Symfony\Component\Console\Input\InputInterface $input, Symfony\Component\Console\Output\OutputInterface $output )
$input Symfony\Component\Console\Input\InputInterface
$output Symfony\Component\Console\Output\OutputInterface
    protected function loadConfiguration(InputInterface $input, OutputInterface $output)
    {
        $command = $this->getCommandName($input);
        if ($command == 'require' || $command == 'install' || $command == 'update') {
            // These are composer task. so don't need to load configuration for altax.
            return;
        }
        foreach ($this->container->getConfigFiles() as $key => $file) {
            if ($file && is_file($file)) {
                require $file;
            }
        }
    }