Ви не можете вибрати більше 25 тем Теми мають розпочинатися з літери або цифри, можуть містити дефіси (-) і не повинні перевищувати 35 символів.

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