mirror of
https://github.com/php/php-src.git
synced 2025-08-15 13:38:49 +02:00
13 lines
149 B
PHP
13 lines
149 B
PHP
--TEST--
|
|
Enum is final
|
|
--FILE--
|
|
<?php
|
|
|
|
enum Foo {}
|
|
|
|
$final = new ReflectionClass(Foo::class)->isFinal();
|
|
var_dump($final);
|
|
|
|
?>
|
|
--EXPECT--
|
|
bool(true)
|