Asm89\Twig\CacheExtension\Extension::__construct PHP Method

__construct() public method

public __construct ( Asm89\Twig\CacheExtension\CacheStrategyInterface $cacheStrategy )
$cacheStrategy Asm89\Twig\CacheExtension\CacheStrategyInterface
    public function __construct(CacheStrategyInterface $cacheStrategy)
    {
        $this->cacheStrategy = $cacheStrategy;
    }

Usage Example

 /**
  * @param CacheStrategyInterface $cacheStrategy
  */
 public function __construct(CacheStrategyInterface $cacheStrategy)
 {
     parent::__construct(new ProfilerStrategy($cacheStrategy, $this));
     $this->strategyClass = get_class($cacheStrategy);
 }