Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.

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