選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

ReductionCartPropertyInterface.php 391B

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