standards icon indicating copy to clipboard operation
standards copied to clipboard

A collection of standards as PHP Enums: ISO3166, ISO4217, ISO639...

Results 5 standards issues
Sort by recently updated
recently updated
newest added

This PR add static function `names()`, `values()` and `toArray` in the BackendEnum class. ```php use PrinsFrank\Standards\BackedEnum; use PrinsFrank\Standards\Language\ISO639_1_Alpha_2; $array = BackedEnum::toArray(ISO639_1_Alpha_2::class); $values = BackedEnum::values(ISO639_1_Alpha_2::class); $names = BackedEnum::names(ISO639_1_Alpha_2::class); ``` This maybe...

Hi, Would you be interested in adding international calling code to your library ? I would gladly contribute a PR. We could add methods on the enum to get the...

🕶️ I do not know what I'm doing but there were issues. ![image](https://github.com/PrinsFrank/standards/assets/952007/fa63f320-bc22-48b7-8142-4b40fb7ca06a)

- 📖 Enable simple to use "copy snippet" feature from GitHub - 📖 Add "use" to PHP snippets to make clear about FQCN and allow IDE to know classes and...