| 1 | <?php |
||
| 23 | trait HasReflectorTrait |
||
| 24 | { |
||
| 25 | /** |
||
| 26 | * The reflection information for this composite |
||
| 27 | * |
||
| 28 | * @var ReflectionComposite |
||
| 29 | */ |
||
| 30 | protected static $reflectionComposite; |
||
| 31 | |||
| 32 | /** |
||
| 33 | * Returns the ReflectionComposite for this object, or constructs |
||
| 34 | * one on the fly if one does not yet exist, using a |
||
| 35 | * ReflectionCompositeFactory |
||
| 36 | * |
||
| 37 | * @return ReflectionComposite |
||
| 38 | */ |
||
| 39 | 10 | protected static function getReflectionComposite() |
|
| 53 | } |
||
| 54 |