Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ThemeFactory.php
Go to the documentation of this file.
1 <?php
7 
9 
11 {
15  private $objectManager;
16 
20  public function __construct(ObjectManagerInterface $objectManager)
21  {
22  $this->objectManager = $objectManager;
23  }
24 
31  public function create(array $data = [])
32  {
33  return $this->objectManager->create(\Magento\Framework\View\Design\Fallback\Rule\Theme::class, $data);
34  }
35 }
__construct(ObjectManagerInterface $objectManager)
$objectManager
Definition: bootstrap.php:17