Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

ReductionInterface.php 380B

před 2 roky
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. }