php-src/ext/reflection/tests/ReflectionProperty_export_basic.phpt
Nikita Popov 3121b7174f Deprecate Reflection export() methods
And remove the Reflector::export() interface method.
2019-07-22 11:39:52 +02:00

15 lines
220 B
PHP

--TEST--
Test ReflectionProperty::__toString() usage.
--FILE--
<?php
class TestClass {
public $proper = 5;
}
echo new ReflectionProperty('TestClass', 'proper');
?>
--EXPECT--
Property [ <default> public $proper ]