1 | <?php |
||
24 | class ReflectionFile extends Reflector |
||
25 | { |
||
26 | /** |
||
27 | * The namespaces which are declared within this file |
||
28 | * |
||
29 | * Normally, and with well formatted code, there should only really |
||
30 | * ever be one of these |
||
31 | * |
||
32 | * @var HashMap |
||
33 | * @readable |
||
34 | */ |
||
35 | protected $namespaces; |
||
36 | |||
37 | /** |
||
38 | * Creates the ReflectionFile by initializing its HashMap property |
||
39 | */ |
||
40 | 22 | public function __construct() |
|
44 | } |
||
45 |