<?phpnamespace App\Index\Worker;use CoreShop\Component\Index\Listing\ListingInterface;use CoreShop\Component\Index\Model\IndexInterface;class MysqlWorker extends \CoreShop\Bundle\IndexBundle\Worker\MysqlWorker{ public function getList(IndexInterface $index): ListingInterface { return new MysqlWorker\Listing($index, $this, $this->database); }}