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

ReductionCartPropertyInterface.php 391B

před 2 roky
123456789101112131415161718
  1. <?php
  2. namespace Lc\CaracoleBundle\Doctrine\Extension;
  3. interface ReductionCartPropertyInterface
  4. {
  5. public function getFreeShipping(): ?bool;
  6. public function setFreeShipping(?bool $freeShipping);
  7. public function getAppliedTo(): ?string;
  8. public function setAppliedTo(string $appliedTo);
  9. public function getType(): ?string;
  10. public function setType(string $type);
  11. }