mirror of
https://github.com/php/php-src.git
synced 2026-04-14 11:32:11 +02:00
RFC: https://wiki.php.net/rfc/enumerations Co-authored-by: Nikita Popov <nikita.ppv@gmail.com> Closes GH-6489.
17 lines
226 B
PHP
17 lines
226 B
PHP
--TEST--
|
|
Enum no manual cases method
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo {
|
|
case Bar;
|
|
|
|
public static function cases(): array {
|
|
return [];
|
|
}
|
|
}
|
|
|
|
?>
|
|
--EXPECTF--
|
|
Fatal error: Cannot redeclare Foo::cases() in %s on line %d
|