Asm89\Twig\CacheExtension\Extension::__construct PHP 메소드

__construct() 공개 메소드

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

Usage Example

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