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.

24 line
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. }