Crunz\Configuration\Configuration::process PHP Method

process() protected method

Handle the configuration settings
protected process ( $filename ) : array
return array
    protected function process($filename)
    {
        $proc = new Processor();
        try {
            return $proc->processConfiguration(new Definition(), $this->parse($filename));
        } catch (InvalidConfigurationException $e) {
            exit($e->getMessage());
        }
    }