No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

27 líneas
452B

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