mle86 / enum
A base class for enum functionality in PHP.
Installs: 5 763
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Requires
- php: >=7.1
- mle86/value: ^2.1 || ^1.2
Requires (Dev)
- ext-json: *
- php-coveralls/php-coveralls: ^2.5
- phpunit/phpunit: ^8 || ^9
- roave/security-advisories: dev-master
README
This PHP library
provides enum
functionality for PHP 7.1+
with an Enum interface,
an AbstractEnum base class,
and an AbstractAutoEnum base class.
It is released under the MIT License.
Installation and Dependencies:
Via Composer: $ composer require mle86/enum
Or insert this into your project's composer.json
file:
"require": { "mle86/enum": "^0" }
Its only dependency is the mle86/value library.
Minimum PHP Version:
PHP 7.1
Usage:
To implement a custom Enum class, simply extend the AbstractAutoEnum base class and add a few public constants:
<?php class TriState extends \mle86\Enum\AbstractAutoEnum { public const HIGH = 'H'; public const LOW = 'L'; public const UNDEF = 'Z'; }
For more fine control
over which values are considered valid by your class,
override the isValid()
class method or
extend the more general AbstractEnum base class instead.
Keep in mind though that enum classes
are fundamentally based on
a hardcoded list of accepted values known at compile-time;
if you want to accept values based on a pattern or on complex validation logic,
consider using a value object class
such as Value
instead.
There's three ways to use enum classes:
-
Just use the class constants.
You don't really need this library to do that as you can simply write a standalone class for that, but it's definitely a possibility. -
Build instances and use typehints in your methods.
The AbstractEnum and AbstractAutoEnum base classes have a default constructor and wraps a single valid enum value in the instance. The wrapped value can then be retrieved with thevalue()
getter but it's also returned by the default__toString()
andjsonSerialize()
methods. -
Use the
validate()
andvalidateOptional()
methods to enfore correct types in your methods.
If you don't want to build instances of your enum classes to avoid the object overhead or simply because you receive non-object input values (e.g. from a JSON API), you can also check raw input values with the twovalidate
methods. They will accept both raw values and instances, return void, and throw an EnumValueException if the input is invalid. ThevalidateOptional()
method also accepts NULL values.
An example with instances and enum typehints:
<?php $state = new TriState(TriState::HIGH); var_dump($state->value()); // H var_dump(json_encode($state)); // "H" var_dump($state->equals(TriState::HIGH)); // true var_dump($state->equals(TriState::LOW)); // false function (TriState $state) { // $state is definitely a TriState instance here, // so it definitely wraps a valid TriState constant. }
Another example without typehints and more explicit validation:
<?php function ($state, $optionalState = null) { TriState::validate($state); // Now we can be sure that $state contains a valid TriState value // (or maybe it's even a TriState instance). TriState::validateOptional($optionalState); // Now we know that $optionalState contains either // a valid TriState value, // a valid TriState instance, // or NULL. }
Classes and Interfaces:
- Enum base interface:
- AbstractEnum base class.
- AbstractAutoEnum base class.
- AbstractEnum base class.
- AutoEnumTrait trait.
- Exception classes.
More Documentation:
- Enum Inheritance – how to extend enum classes.
- Serializability – how Enum instances can be serialized.
- Type Safety – notes about enum value types and typecasting.