Exemplo n.º 1
0
 /**
  * Constructor
  *
  * @param FileSystem $filesystem
  * @param TemplateEnginePool $templateEnginePool
  * @param Encoder $encoder
  */
 public function __construct(
     FileSystem $filesystem,
     TemplateEnginePool $templateEnginePool,
     Encoder $encoder
 ) {
     parent::__construct($filesystem, $templateEnginePool);
     $this->encoder = $encoder;
 }
Exemplo n.º 2
0
 /**
  * Constructor
  *
  * @param FileSystem $filesystem
  * @param TemplateEnginePool $templateEnginePool
  * @param Generator $generator
  */
 public function __construct(FileSystem $filesystem, TemplateEnginePool $templateEnginePool, Generator $generator)
 {
     $this->generator = $generator;
     parent::__construct($filesystem, $templateEnginePool);
 }
Exemplo n.º 3
0
 /**
  * Constructor
  *
  * @param FileSystem $filesystem
  * @param TemplateEnginePool $templateEnginePool
  */
 public function __construct(FileSystem $filesystem, TemplateEnginePool $templateEnginePool)
 {
     parent::__construct($filesystem, $templateEnginePool);
 }