Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

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