1
0
mirror of https://github.com/maximebf/php-debugbar.git synced 2025-01-16 21:08:34 +01:00

Merge pull request #234 from cloudjibao/master

Updated the getCache method
This commit is contained in:
Barry vd. Heuvel 2015-11-13 20:32:12 +01:00
commit 70cb7a301e

View File

@ -118,9 +118,9 @@ class TraceableTwigEnvironment extends Twig_Environment
return $this->twig->isStrictVariables();
}
public function getCache()
public function getCache($original = true)
{
return $this->twig->getCache();
return $this->twig->getCache($original);
}
public function setCache($cache)