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.

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