Enum Methods
Enums can contain methods to add behavior.
Example
Section titled “Example”enum Role { case Admin; case User;
public function canEdit(): bool { return $this === Role::Admin; }}
$role = Role::Admin;
var_dump($role->canEdit());