no-from.phpt 251 B

12345678910111213141516
  1. --TEST--
  2. Enum no manual from method
  3. --FILE--
  4. <?php
  5. enum Foo: int {
  6. case Bar = 0;
  7. public static function from(string|int $value): self {
  8. return $this;
  9. }
  10. }
  11. ?>
  12. --EXPECTF--
  13. Fatal error: Cannot redeclare Foo::from() in %s on line %d