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.

19 lines
380B

  1. <?php
  2. namespace Lc\CaracoleBundle\Doctrine\Extension;
  3. interface ReductionInterface
  4. {
  5. public function getValue(): ?float;
  6. public function setValue(?float $value);
  7. public function getUnit(): ?string;
  8. public function setUnit(?string $unit);
  9. public function getBehaviorTaxRate(): ?string;
  10. public function setBehaviorTaxRate(?string $behaviorTaxRate);
  11. }