Magento 2 Documentation  2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
ModularSwitchFactory.php
Go to the documentation of this file.
1 <?php
7 
9 
11 {
17  private $objectManager;
18 
24  public function __construct(ObjectManagerInterface $objectManager)
25  {
26  $this->objectManager = $objectManager;
27  }
28 
35  public function create(array $data = [])
36  {
37  return $this->objectManager->create(\Magento\Framework\View\Design\Fallback\Rule\ModularSwitch::class, $data);
38  }
39 }
$objectManager
Definition: bootstrap.php:17