words = $words; } /** * @return Generator|string */ public function greet() { foreach ($this->words as $word) { yield $word.' world!'; } } }