1234567891011121314151617181920212223242526272829303132333435363738 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\View\Asset;
- use Magento\Framework\ObjectManagerInterface;
- /**
- * Factory class for \Magento\Framework\View\Asset\Remote
- */
- class RemoteFactory
- {
- /**
- * @var ObjectManagerInterface
- */
- private $objectManager;
- /**
- * @param ObjectManagerInterface $objectManager
- */
- public function __construct(ObjectManagerInterface $objectManager)
- {
- $this->objectManager = $objectManager;
- }
- /**
- * Create class instance with specified parameters
- *
- * @param array $data
- * @return \Magento\Framework\View\Asset\Remote
- */
- public function create(array $data = [])
- {
- return $this->objectManager->create(Remote::class, $data);
- }
- }
|