123456789101112131415161718192021222324252627282930313233343536373839 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Framework\Data\Test\Unit\Collection;
- /**
- * Concrete implementation of abstract collection, created for abstract collection testing purposes.
- */
- class DbCollection extends \Magento\Framework\Data\Collection\AbstractDb
- {
- /**
- * @var \Magento\Framework\Model\ResourceModel\Db\AbstractDb
- */
- private $resource;
- /**
- * Set DB resource for testing purposes.
- *
- * @param \Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource
- * @return $this
- */
- public function setResource(\Magento\Framework\Model\ResourceModel\Db\AbstractDb $resource)
- {
- $this->resource = $resource;
- return $this;
- }
- /**
- * Get resource instance.
- *
- * @return \Magento\Framework\Model\ResourceModel\Db\AbstractDb
- */
- public function getResource()
- {
- return $this->resource;
- }
- }
|