選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

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