コード例 #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
ファイル: Xml.php プロジェクト: pradeep-wagento/magento2
 /**
  * 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);
 }