Helper.php 565 B

123456789101112131415161718192021
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Catalog\Model\ResourceModel;
  7. /**
  8. * Eav Mysql resource helper model
  9. */
  10. class Helper extends \Magento\Eav\Model\ResourceModel\Helper
  11. {
  12. /**
  13. * @param \Magento\Framework\App\ResourceConnection $resource
  14. * @param string $modulePrefix
  15. */
  16. public function __construct(\Magento\Framework\App\ResourceConnection $resource, $modulePrefix = 'Magento_Catalog')
  17. {
  18. parent::__construct($resource, $modulePrefix);
  19. }
  20. }