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

24 行
641B

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Order;
  3. interface OrderProductReductionCatalogInterface
  4. {
  5. public function getTitle(): ?string;
  6. public function setTitle(string $title): OrderProductReductionCatalogInterface;
  7. public function getValue(): ?float;
  8. public function setValue(?float $value): OrderProductReductionCatalogInterface;
  9. public function getUnit(): ?string;
  10. public function setUnit(?string $unit): OrderProductReductionCatalogInterface;
  11. public function getBehaviorTaxRate(): ?string;
  12. public function setBehaviorTaxRate(?string $behaviorTaxRate
  13. ): OrderProductReductionCatalogInterface;
  14. }