Currently the PHPDoc return type of `getValues()` is [an array](https://github.com/myclabs/php-enum/blob/5b66b22209ffbb547958aeacf9ad4a0e9a453da1/src/Enum.php#L89). Would it be an idea to change that to: ``` php /** * @return Enum[] */ ``` This would allow proper code completion, for example: ``` php foreach(Locales::getValues() as $locale){ echo $locale->getValue(); //This currently results in a warning } ```