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.
|
- <?php
-
- namespace Lc\CaracoleBundle\Model\User;
-
-
- use Lc\CaracoleBundle\Model\PointSale\PointSaleInterface;
- use Lc\SovBundle\Model\User\UserInterface;
-
- interface UserPointSaleInterface
- {
- public function getUser(): ?UserInterface;
-
- public function setUser(?UserInterface $user): UserPointSaleInterface;
-
- public function getPointSale(): ?PointSaleInterface;
-
- public function setPointSale(?PointSaleInterface $pointSale): UserPointSaleInterface;
-
- public function getComment(): ?string;
-
- public function setComment(?string $comment): UserPointSaleInterface;
- }
|