markbaker / enumhelper
A small library that provides Helper Traits for PHP 8.1 Enums
Installs: 6 366
Dependents: 1
Suggesters: 0
Security: 0
Stars: 27
Watchers: 2
Forks: 1
Open Issues: 0
Requires
- php: ^8.1
Requires (Dev)
- dealerdirect/phpcodesniffer-composer-installer: ^0.7.0
- phpcompatibility/php-compatibility: ^9.0
- phpunit/phpunit: ^9.5||^10.0
- squizlabs/php_codesniffer: ^3.4
This package is auto-updated.
Last update: 2024-10-20 23:51:30 UTC
README
This package provides a series of traits that allows you to:
-
RestorableFromName Trait
Create/restore a PHP 8.1 enum from a name string.
-
EnumValidatableCase
Validate an enum name from a name string.
-
CasesIndexedByName
Similar to the standard static
cases()
method, but returns an associative array, indexed by the case names.
Installation
You can install the package via composer:
composer require markbaker/enumhelper
Usage
RestorableFromName Trait
In PHP 8.1, it is possible to create a backed enum from a value using the enum's from()
or tryFrom()
methods.
enum Suit: string { case Hearts = 'H'; case Diamonds = 'D'; case Clubs = 'C'; case Spades = 'S'; } $suit = Suit::Diamonds; $value = $suit->value; // Returns 'D' $newSuit = Suit::from($value);
The EnumHelper\EnumRestorableFromName
trait provided in this library adds a fromName()
method to any enum where you want to create an enum from its name, rather than from its value.
enum Suit: string { use EnumHelper\EnumRestorableFromName; case Hearts = 'H'; case Diamonds = 'D'; case Clubs = 'C'; case Spades = 'S'; } $suit = Suit::Diamonds; $suitName = $suit->name; // Returns 'Diamonds' $newSuit = Suit::fromName($suitName);
An invalid name will throw an exception. Note that names are case-sensitive.
This could be useful if you wanted to store the name in a database for readability (particularly appropriate for unbacked enums); then recreate the enum in the model when you load the database record.
This works with both backed and unbacked enums.
EnumValidatableCase Trait
Useful to validate if a name has been defined in the case set for an enum:
enum Suit: string { use EnumHelper\EnumValidatableCase; case Hearts = 'H'; case Diamonds = 'D'; case Clubs = 'C'; case Spades = 'S'; } $suit = Suit::Diamonds; $validCaseName = Suit::Hearts; $isCaseNameValid = Suit::isValidCase($validCaseName); // Returns boolean true $invalidCaseName = 'HeArTs'; $isCaseNameValid = Suit::isValidCase($invalidCaseName); // Returns boolean false
Note that names are case-sensitive.
This works with both backed and unbacked enums.
CasesIndexedByName Trait
While PHP 8.1+ Enums already provide a standard static cases()
method to return a list of all cases defined for that enum:
enum Suit: string { use EnumHelper\EnumValidatableCase; case Hearts = 'H'; case Diamonds = 'D'; case Clubs = 'C'; case Spades = 'S'; } var_dump(Suit::cases());
which returns an enumerated array of the defined cases.
array(4) {
[0]=>
enum(Suit::Hearts)
[1]=>
enum(Suit::Diamonds)
[2]=>
enum(Suit::Clubs)
[3]=>
enum(Suit::Spades)
}
Using the CasesIndexedByName
Trait and the related casesIndexedByName()
method
enum Suit: string { use EnumHelper\CasesIndexedByName; case Hearts = 'H'; case Diamonds = 'D'; case Clubs = 'C'; case Spades = 'S'; } var_dump(Suit::casesIndexedByName());
which will return an associative array of the defined cases, where the array index is the case name.
array(4) {
["Hearts"]=>
enum(Suit::Hearts)
["Diamonds"]=>
enum(Suit::Diamonds)
["Clubs"]=>
enum(Suit::Clubs)
["Spades"]=>
enum(Suit::Spades)
}
This can be particularly useful if you filter the cases()
list to return a subset of cases, and don't like the gaps in numeric sequence in the enumerated array.
enum Suit: string { use EnumHelper\CasesIndexedByName; public const RED = 'Red'; public const BLACK = 'Black'; case Hearts = 'H'; case Diamonds = 'D'; case Clubs = 'C'; case Spades = 'S'; public function color(): string { return match($this) { self::Hearts, self::Diamonds => self::RED, self::Clubs, self::Spades => self::BLACK, }; } public static function red(): array { return array_filter( self::casesIndexedByName(), fn(self $suit) => $suit->color() === self::RED ); } public static function black(): array { return array_filter( self::casesIndexedByName(), fn(self $suit) => $suit->color() === self::BLACK ); } } var_dump(Suit::black());
will return
array(2) {
["Clubs"]=>
enum(Suit::Clubs)
["Spades"]=>
enum(Suit::Spades)
}
Changelog
Please see the CHANGELOG for more information on what has changed recently.
License
This library is released under the MIT License (MIT). Please see License File for more information.