| Current Path : /home/rtorresani/www/app/code/Amasty/ImportCore/Model/Batch/ResourceModel/ |
| Current File : //home/rtorresani/www/app/code/Amasty/ImportCore/Model/Batch/ResourceModel/Collection.php |
<?php
declare(strict_types=1);
/**
* @author Amasty Team
* @copyright Copyright (c) Amasty (https://www.amasty.com)
* @package Import Core for Magento 2 (System)
*/
namespace Amasty\ImportCore\Model\Batch\ResourceModel;
use Amasty\ImportCore\Model\Batch\Batch;
use Amasty\ImportCore\Model\Batch\ResourceModel\Batch as BatchResource;
use Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection;
class Collection extends AbstractCollection
{
public function _construct()
{
$this->_init(Batch::class, BatchResource::class);
}
}