Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

15 lines
550B

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\PointSale;
  3. use Lc\CaracoleBundle\Model\Section\SectionInterface;
  4. interface PointSaleSectionInterface
  5. {
  6. public function getSection(): SectionInterface;
  7. public function setSection(SectionInterface $section): PointSaleSectionInterface;
  8. public function getPointSale(): PointSaleInterface;
  9. public function setPointSale(PointSaleInterface $pointSale): PointSaleSectionInterface;
  10. public function getOrderAmountMin(): ?float;
  11. public function setOrderAmountMin(float $orderAmountMin): self;
  12. }