Collection.php 414 B

12345678910111213
  1. <?php
  2. namespace Cpcommerce\ShippingNotification\Model\ResourceModel\ShippingCategory;
  3. use \Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection;
  4. class Collection extends AbstractCollection
  5. {
  6. protected function _construct()
  7. {
  8. $this->_init('Cpcommerce\ShippingNotifications\Model\ShippingCategory','Cpcommerce\ShippingNotifications\Model\ResourceModel\ShippingCategory');
  9. }
  10. }