You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

PointSaleStore.php 387B

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
123456789101112131415161718
  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\PointSale;
  3. use Lc\CaracoleBundle\Repository\MerchantStoreTrait;
  4. use Lc\SovBundle\Repository\AbstractStore;
  5. class PointSaleStore extends AbstractStore
  6. {
  7. use MerchantStoreTrait;
  8. protected PointSaleRepositoryQuery $query;
  9. public function __construct(PointSaleRepositoryQuery $query)
  10. {
  11. $this->query = $query;
  12. }
  13. }