1
0
mirror of https://github.com/php/php-src.git synced 2026-04-23 16:08:35 +02:00
Files
archived-php-src/Zend/tests/enum/final.phpt
T
2024-10-18 22:22:54 +02:00

14 lines
149 B
PHP

--TEST--
Enum is final
--FILE--
<?php
enum Foo {}
$final = new ReflectionClass(Foo::class)->isFinal();
var_dump($final);
?>
--EXPECT--
bool(true)