Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
AbstractContentType.php
Go to the documentation of this file.
1 <?php
7 
10 
14 abstract class AbstractContentType implements ContentTypeInterface
15 {
19  protected $filesystem;
20 
25 
32  public function __construct(
35  ) {
36  $this->filesystem = $filesystem;
37  $this->templateEnginePool = $templateEnginePool;
38  }
39 }
__construct(FileSystem $filesystem, TemplateEnginePool $templateEnginePool)