1--TEST--
2Test ReflectionProperty::export() usage.
3--FILE--
4<?php
5
6class TestClass {
7    public $proper = 5;
8}
9
10var_dump(ReflectionProperty::export('TestClass', 'proper'));
11
12?>
13--EXPECT--
14Property [ <default> public $proper ]
15
16NULL
17