Du kan inte välja fler än 25 ämnen Ämnen måste starta med en bokstav eller siffra, kan innehålla bindestreck ('-') och vara max 35 tecken långa.

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