AbstractEnum::getValues(): string[]

In this article

Gets all valid values for this enum.

Return

string[] List of all enum values.

Source

final public static function getValues(): array
{
    return array_values(static::getConstants());
}

Changelog

VersionDescription
0.1.0Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.