12345678910111213141516171819202122232425262728293031323334353637383940 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Message;
- use Magento\Framework\ObjectManagerInterface;
- /**
- * Message collection factory
- */
- class CollectionFactory
- {
- /**
- * Object Manager instance
- *
- * @var ObjectManagerInterface
- */
- protected $objectManager;
- /**
- * @param ObjectManagerInterface $objectManager
- */
- public function __construct(ObjectManagerInterface $objectManager)
- {
- $this->objectManager = $objectManager;
- }
- /**
- * Create class instance with specified parameters
- *
- * @param array $data
- * @return Collection
- */
- public function create(array $data = [])
- {
- return $this->objectManager->create(\Magento\Framework\Message\Collection::class, $data);
- }
- }
|