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

OrderAmountMinTrait.php 452B

1234567891011121314151617181920212223242526
  1. <?php
  2. namespace Lc\CaracoleBundle\Doctrine\Extension;
  3. use Doctrine\ORM\Mapping as ORM;
  4. trait OrderAmountMinTrait
  5. {
  6. /**
  7. * @ORM\Column(type="float")
  8. */
  9. protected $orderAmountMin;
  10. public function getOrderAmountMin(): ?float
  11. {
  12. return $this->orderAmountMin;
  13. }
  14. public function setOrderAmountMin(float $orderAmountMin): self
  15. {
  16. $this->orderAmountMin = $orderAmountMin;
  17. return $this;
  18. }
  19. }