HamlPHP::disableCache PHP Method

disableCache() public method

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

Usage Example

Example #1
0
 public function __construct()
 {
     $this->evaluator = new ContentEvaluator();
     $hamlPHP = new HamlPHP(new FileStorage(dirname(__FILE__) . '/tmp/'));
     $hamlPHP->disableCache();
     $this->compiler = $hamlPHP->getCompiler();
 }