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.

29 lines
780B

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Section;
  3. use Lc\SovBundle\Model\User\GroupUserInterface;
  4. interface OpeningInterface
  5. {
  6. public function getDay(): ?int;
  7. public function setDay(int $day): OpeningInterface;
  8. public function getTimeStart(): ?\DateTimeInterface;
  9. public function setTimeStart(?\DateTimeInterface $timeStart): OpeningInterface;
  10. public function getTimeEnd(): ?\DateTimeInterface;
  11. public function setTimeEnd(?\DateTimeInterface $timeEnd): OpeningInterface;
  12. public function getSection(): ?SectionInterface;
  13. public function setSection(?SectionInterface $section): OpeningInterface;
  14. public function getGroupUser(): ?GroupUserInterface;
  15. public function setGroupUser(?GroupUserInterface $groupUser): OpeningInterface;
  16. }