Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

PointSaleStore.php 239B

3 år sedan
3 år sedan
3 år sedan
3 år sedan
12345678910111213
  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\PointSale;
  3. class PointSaleStore
  4. {
  5. protected PointSaleRepositoryQuery $query;
  6. public function __construct(PointSaleRepositoryQuery $query)
  7. {
  8. $this->query = $query;
  9. }
  10. }