/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/reflection/tests/ReflectionClassConstant_unset_name.phpt
28 строк
644 B
Nikita Popov
Add test for unsetting ReflectionClassConstant::$name
02 июн 2021, 13:17
02 июн 2021, 13:17
0aaa862
Код
Авторство
О чём код?
--TEST-- Unsetting name on ReflectionClassConstant --FILE-- <?php class Test { public const C = 1; } // This is unsupported and the actual behavior doesn't matter. // Just make sure it doesn't crash. $rc = new ReflectionClassConstant(Test::class, 'C'); unset($rc->name); try { var_dump($rc->getName()); } catch (Error $e) { echo $e->getMessage(), "\n"; } try { echo $rc, "\n"; } catch (Error $e) { echo $e->getMessage(), "\n"; } ?> --EXPECT-- Typed property ReflectionClassConstant::$name must not be accessed before initialization Typed property ReflectionClassConstant::$name must not be accessed before initialization