Você não pode selecionar mais de 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

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