Download the PHP package ariantron/base-enum without Composer
On this page you can find all versions of the php package ariantron/base-enum. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download ariantron/base-enum
More information about ariantron/base-enum
Files in ariantron/base-enum
Package base-enum
Short Description A superclass for Enum class creation with more functionalities
License MIT
Informations about the package base-enum
Base Enum
The Base Enum Composer package provides a versatile superclass for creating Enum classes in PHP with enhanced functionalities. Enums are a powerful way to represent a fixed set of named values in your code, and this package simplifies their implementation and usage.
Installation
To install the Base Enum package, use the following Composer command:
Usage
Creating Enum Classes
To create an Enum class using the Base Enum package, extend the BaseEnum
class and define your constants within the class. Here's an example:
Enum Class Methods
isValidName($name, $strict = false): bool
Check if the given $name
is a valid constant name within the Enum. By default, the check is case-insensitive, but you can set $strict
to true
for a case-sensitive check.
getConstants(): array
Retrieve an array of all constants defined in the Enum class.
isValidValue($value, $strict = true): bool
Check if the given $value
is a valid constant value within the Enum. By default, the check is strict (both value and type), but you can set $strict
to false
for a loose check.
getName($val): int|string
Convert the Enum constant value back to its corresponding constant name.
Example Usage
Contribution
Feel free to contribute to the development of this package by submitting issues or pull requests on the GitHub repository.
License
This package is open-source and available under the MIT License. Feel free to use, modify, and distribute it according to the terms of the license.