| Current Path : /home/rtorresani/www/app/code/Amasty/ImportCore/Model/FileUploadMap/ResourceModel/ |
| Current File : //home/rtorresani/www/app/code/Amasty/ImportCore/Model/FileUploadMap/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\FileUploadMap\ResourceModel;
use Amasty\ImportCore\Model\FileUploadMap\FileUploadMap;
use Amasty\ImportCore\Model\FileUploadMap\ResourceModel\FileUploadMap as FileUploadMapResource;
use Magento\Framework\Model\ResourceModel\Db\Collection\AbstractCollection;
class Collection extends AbstractCollection
{
public function _construct()
{
$this->_init(FileUploadMap::class, FileUploadMapResource::class);
}
}