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ů.
|
- <?php
-
- namespace Lc\CaracoleBundle\Doctrine\Extension;
-
- interface ReductionInterface
- {
- public function getValue(): ?float;
-
- public function setValue(?float $value);
-
- public function getUnit(): ?string;
-
- public function setUnit(?string $unit);
-
- public function getBehaviorTaxRate(): ?string;
-
- public function setBehaviorTaxRate(?string $behaviorTaxRate);
- }
|