Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

UserPointSaleInterface.php 578B

3 роки тому
3 роки тому
3 роки тому
2 роки тому
3 роки тому
2 роки тому
3 роки тому
2 роки тому
12345678910111213141516171819202122
  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. }