HamlPHP::disableCache PHP Method

disableCache() public method

Disables caching.
public disableCache ( )
    public function disableCache()
    {
        $this->_cacheEnabled = false;
    }

Usage Example

コード例 #1
0
ファイル: BaseTestCase.php プロジェクト: hamlphp/hamlphp
 public function __construct()
 {
     $this->evaluator = new ContentEvaluator();
     $hamlPHP = new HamlPHP(new FileStorage(dirname(__FILE__) . '/tmp/'));
     $hamlPHP->disableCache();
     $this->compiler = $hamlPHP->getCompiler();
 }