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.

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