12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\View\Design\Theme;
- /**
- * Theme File Factory
- */
- class FileFactory
- {
- /**
- * Object Manager instance
- *
- * @var \Magento\Framework\ObjectManagerInterface
- */
- protected $_objectManager;
- /**
- * Object manager
- *
- * @param \Magento\Framework\ObjectManagerInterface $objectManager
- */
- public function __construct(\Magento\Framework\ObjectManagerInterface $objectManager)
- {
- $this->_objectManager = $objectManager;
- }
- /**
- * Create class instance with specified parameters
- *
- * @param array $data
- * @return \Magento\Framework\View\Design\Theme\FileInterface
- */
- public function create(array $data = [])
- {
- return $this->_objectManager->create(\Magento\Framework\View\Design\Theme\FileInterface::class, $data);
- }
- }
|