*/ protected $phpVersions; /** * @var \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\T3o\Typo3Roadmap\Domain\Model\MinorVersion> */ protected $minorVersions; /** * @return string */ public function getTitle() { return $this->title; } /** * @return string */ public function getBodyText() { return $this->bodyText; } /** * @return int */ public function getDevelopmentStart() { return $this->developmentStart; } /** * @return int */ public function getRegularSupport() { return $this->regularSupport; } /** * @return int */ public function getPrioritySupport() { return $this->prioritySupport; } /** * @return int */ public function getExtendedSupport() { return $this->extendedSupport; } /** * @return \T3o\Typo3Roadmap\Domain\Model\PhpVersion[] */ public function getPhpVersions() { return $this->phpVersions->toArray(); } /** * @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\T3o\Typo3Roadmap\Domain\Model\PhpVersion> $phpVersions */ public function setPhpVersions($phpVersions) { return $this->phpVersions = $phpVersions; } /** * @return \T3o\Typo3Roadmap\Domain\Model\MinorVersion[] */ public function getMinorVersions() { return $this->minorVersions->toArray(); } /** * @param \TYPO3\CMS\Extbase\Persistence\ObjectStorage<\T3o\Typo3Roadmap\Domain\Model\MinorVersion> $minorVersions */ public function setMinorVersions($minorVersions) { $this->minorVersions = $minorVersions; } }