age; } /** * @param int $age * @return Person1 */ public function setAge(int $age): Person1 { $this->age = $age; return $this; } /** * @return string */ public function getName(): string { return $this->name; } /** * @param string $name * @return Person1 */ public function setName(string $name): Person1 { $this->name = $name; return $this; } /** * @return Toothbrush1 */ public function getToothbrush(): Toothbrush1 { return $this->toothbrush; } /** * @param Toothbrush1 $toothbrush * @return Person1 */ public function setToothbrush(Toothbrush1 $toothbrush): Person1 { $this->toothbrush = $toothbrush; return $this; } }