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.

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