您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

OrderPayoffInterface.php 405B

123456789101112131415161718
  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. }