123456789101112131415161718192021222324252627282930313233 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Eav\Test\Unit\Model\Entity\Collection;
- class AbstractCollectionStub extends \Magento\Eav\Model\Entity\Collection\AbstractCollection
- {
- /**
- * Retrieve item by id
- *
- * @param mixed $id
- * @return \Magento\Framework\DataObject
- */
- public function getItemById($id)
- {
- if (isset($this->_itemsById[$id])) {
- return $this->_itemsById[$id];
- }
- return null;
- }
- /**
- * Initialize collection
- *
- * @return void
- */
- protected function _construct()
- {
- return $this->_init(\Magento\Framework\DataObject::class, 'test_entity_model');
- }
- }
|