예제 #1
0
파일: Json.php 프로젝트: nja78/magento2
 /**
  * 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;
 }
예제 #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);
 }
예제 #3
0
파일: Json.php 프로젝트: opexsw/magento2
 /**
  * Constructor
  *
  * @param FileSystem $filesystem
  * @param TemplateEnginePool $templateEnginePool
  */
 public function __construct(FileSystem $filesystem, TemplateEnginePool $templateEnginePool)
 {
     parent::__construct($filesystem, $templateEnginePool);
 }