Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 1 | Features | 1 |
1 | <?php |
||
20 | public function write(ClassMetadata $class) |
||
21 | { |
||
22 | $property = new \ReflectionProperty('\PHP_CodeCoverage', 'data'); |
||
23 | $property->setAccessible(true); |
||
24 | $data = $property->getValue($this->report); |
||
25 | |||
26 | $data = $this->modifyData($class, $data); |
||
27 | |||
28 | $property->setValue($this->report, $data); |
||
29 | } |
||
30 | |||
61 |