namespace CG\Tests\Generator\Fixture; /** * Doc Comment. * * @author Johannes M. Schmitt */ class EntityPhp7 { /** * @var integer */ private $id = 0; public function setTimeZone(\DateTimeZone $timezone) { } public function setTime(\DateTime $time) { } /** * @param int $id * @return EntityPhp7 */ public function setId(int $id = NULL): self { } public function setArray(array &$array = NULL): array { } public function getTimeZone(): \DateTimeZone { } public function getTime(): \DateTime { } /** * @return int */ public function getId(): int { } public function getFoo(): \CG\Tests\Generator\Fixture\SubFixture\Foo { } public function getBaz(): \CG\Tests\Generator\Fixture\SubFixture\Baz { } public function getBar(): \CG\Tests\Generator\Fixture\SubFixture\Bar { } }