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.
|
- <?php
-
- namespace Lc\CaracoleBundle\Doctrine\Extension;
-
- use Lc\CaracoleBundle\Model\Order\OrderShopInterface;
-
- interface OrderPayoffInterface
- {
- public function getOrderShop(): ?OrderShopInterface;
-
- public function setOrderShop(?OrderShopInterface $orderShop);
-
- public function setEditable(bool $editable);
-
- public function getEditable(): ?bool;
-
- public function isEditable(): ?bool;
- }
|