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.

19 lines
439B

  1. <?php
  2. namespace Lc\CaracoleBundle\Model\Distribution;
  3. interface DistributionInterface
  4. {
  5. public function getCycleNumber(): ?int;
  6. public function setCycleNumber(int $cycleNumber): DistributionInterface;
  7. public function getYear(): ?int;
  8. public function setYear(int $year): DistributionInterface;
  9. public function getCycleType(): ?string;
  10. public function setCycleType(string $cycleType): DistributionInterface;
  11. }