您最多选择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. }