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.

ReductionInterface.php 380B

2 years ago
123456789101112131415161718
  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. }