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.

22 lines
578B

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\User;
  3. use Lc\CaracoleBundle\Model\PointSale\PointSaleInterface;
  4. use Lc\SovBundle\Model\User\UserInterface;
  5. interface UserPointSaleInterface
  6. {
  7. public function getUser(): ?UserInterface;
  8. public function setUser(?UserInterface $user): UserPointSaleInterface;
  9. public function getPointSale(): ?PointSaleInterface;
  10. public function setPointSale(?PointSaleInterface $pointSale): UserPointSaleInterface;
  11. public function getComment(): ?string;
  12. public function setComment(?string $comment): UserPointSaleInterface;
  13. }