You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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