您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
387B

  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. }