src/Index/Worker/MysqlWorker.php line 10

Open in your IDE?
  1. <?php
  2. namespace App\Index\Worker;
  3. use CoreShop\Component\Index\Listing\ListingInterface;
  4. use CoreShop\Component\Index\Model\IndexInterface;
  5. class MysqlWorker extends \CoreShop\Bundle\IndexBundle\Worker\MysqlWorker
  6. {
  7.     public function getList(IndexInterface $index): ListingInterface
  8.     {
  9.         return new MysqlWorker\Listing($index$this$this->database);
  10.     }
  11. }