TheSeer\Autoload\Factory::getParser PHP Method

getParser() public method

public getParser ( ) : Parser
return Parser
    public function getParser()
    {
        $parser = new Parser($this->config->isLowercaseMode());
        if (!$this->config->isCacheEnabled()) {
            return $parser;
        }
        return new CachingParser($this->getCache(), $parser);
    }