Conditions | 5 |
Paths | 3 |
Total Lines | 18 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
43 | $result[$name] = $this->$name; |
||
44 | } |
||
45 | |||
46 | if ($property->isProtected() || $property->isPrivate()) { |
||
47 | $property->setAccessible(true); |
||
48 | |||
49 | if ($registry->has($name) && $registry->isReadable($name)) { |
||
50 | $result[$name] = $property->getValue($this); |
||
51 | } |
||
52 | } |
||
53 | } |
||
54 | |||
55 | return $result; |
||
56 | } |
||
57 | } |
||
58 |