Conditions | 3 |
Paths | 3 |
Total Lines | 14 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
27 | protected function getPropertyValue($object, $propertyName) |
||
28 | { |
||
29 | $result = null; |
||
30 | |||
31 | try { |
||
32 | $result = parent::getPropertyValue($object, $propertyName); |
||
33 | } catch (\Exception $exception) { |
||
34 | if (false === $exception instanceof SilentExceptionInterface) { |
||
35 | throw $exception; |
||
36 | } |
||
37 | } |
||
38 | |||
39 | return $result; |
||
40 | } |
||
41 | } |
||
42 |