| 1 | <?php |
||
| 9 | class ProductImage extends \Magento\Framework\Model\ResourceModel\Db\AbstractDb |
||
| 10 | { |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var \Magento\Framework\EntityManager\EntityManager |
||
| 14 | */ |
||
| 15 | protected $entityManager; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * Constructor. |
||
| 19 | */ |
||
| 20 | protected function _construct() |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @param $imageName |
||
| 27 | * @param $productId |
||
| 28 | * @param $ean |
||
| 29 | * @return mixed |
||
| 30 | */ |
||
| 31 | public function imageExists($imageName, $productId, $ean) |
||
| 40 | |||
| 41 | /** |
||
| 42 | * @return mixed |
||
| 43 | */ |
||
| 44 | public function getProcessedEans() |
||
| 53 | |||
| 54 | } |
||
| 55 |