summaryrefslogtreecommitdiff
path: root/ext/reflection/tests/ReflectionProperty_export_basic.phpt
blob: 28f1f6b988f963812cd6db9161cc613fe9207633 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--TEST--
Test ReflectionProperty::__toString() usage.
--FILE--
<?php

class TestClass {
    public $proper = 5;
}

echo new ReflectionProperty('TestClass', 'proper');

?>
--EXPECT--
Property [ <default> public $proper ]