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.

19 lines
405B

  1. <?php
  2. namespace Lc\CaracoleBundle\Doctrine\Extension;
  3. use Lc\CaracoleBundle\Model\Order\OrderShopInterface;
  4. interface OrderPayoffInterface
  5. {
  6. public function getOrderShop(): ?OrderShopInterface;
  7. public function setOrderShop(?OrderShopInterface $orderShop);
  8. public function setEditable(bool $editable);
  9. public function getEditable(): ?bool;
  10. public function isEditable(): ?bool;
  11. }