isCacheEnabled() public method

public isCacheEnabled ( )
コード例 #1
0
ファイル: Factory.php プロジェクト: theseer/autoload
 /**
  * @return Parser
  */
 public function getParser()
 {
     $parser = new Parser($this->config->isLowercaseMode());
     if (!$this->config->isCacheEnabled()) {
         return $parser;
     }
     return new CachingParser($this->getCache(), $parser);
 }