Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

OrderPaymentStore.php 310B

il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
il y a 3 ans
123456789101112131415
  1. <?php
  2. namespace Lc\CaracoleBundle\Repository\Order;
  3. use Lc\SovBundle\Repository\AbstractStore;
  4. class OrderPaymentStore extends AbstractStore
  5. {
  6. protected OrderPaymentRepositoryQuery $query;
  7. public function __construct(OrderPaymentRepositoryQuery $query)
  8. {
  9. $this->query = $query;
  10. }
  11. }