| 1 | <?php |
||
| 8 | class ReflectionProperty extends \ReflectionProperty |
||
| 9 | { |
||
| 10 | |||
| 11 | use ReflectionDocCommentTrait; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * Gets declaring class. |
||
| 15 | * |
||
| 16 | * @return \Wingu\OctopusCore\Reflection\ReflectionClass |
||
| 17 | */ |
||
| 18 | 6 | public function getDeclaringClass() |
|
| 22 | |||
| 23 | /** |
||
| 24 | * Get the default value of the property. |
||
| 25 | * |
||
| 26 | * @return mixed |
||
| 27 | */ |
||
| 28 | 3 | public function getDefaultValue() |
|
| 32 | } |
||
| 33 |