15 lines
368 B
PHP
Executable File
15 lines
368 B
PHP
Executable File
<?php
|
|
|
|
namespace IpSupply\CartToQuote\Model\ResourceModel\CartItem;
|
|
|
|
class Collection extends \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection
|
|
{
|
|
|
|
protected function _construct()
|
|
{
|
|
// Model + Resource Model
|
|
$this->_init('IpSupply\CartToQuote\Model\CartItem', 'IpSupply\CartToQuote\Model\ResourceModel\CartItem');
|
|
}
|
|
|
|
}
|