- Output for 8.3.3 - 8.3.25, 8.4.1 - 8.4.12
- enum(testEnum::two)
- Output for 8.1.30 - 8.1.33, 8.2.21 - 8.2.29
- Parse error: syntax error, unexpected token ";", expecting "(" in /in/jhfJU on line 11
Process exited with code 255.
<?php
enum testEnum {
case one;
case two;
case three;
public static function fromName (string $caseName): static {
return static::{$caseName};
}
}
var_dump(testEnum::fromName("two"));