Enumeration in PHP
tldr; php 8.1 will introduce enum as a new data type derived from classes and will behave like objects.
Enum syntax in PHP
enum Status{
case Draft;
case Published;
case Archived;
}
long gone are the days of php being mocked for missing f...
ri5h.hashnode.dev2 min read