Conditions | 3 |
Paths | 3 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 1 | Features | 0 |
1 | <?php |
||
19 | 25 | public function check(Resource $resource) |
|
20 | { |
||
21 | 25 | foreach ($resource->properties() as $key => $value) { |
|
22 | 17 | if (isset($resource->rewrites()[$key])) { |
|
23 | 1 | $when = $resource->rewrites()[$key]['when']; |
|
24 | |||
25 | 1 | $this->overwriteValueIfGreaterThan($when, $resource, $key); |
|
26 | } |
||
27 | } |
||
28 | 25 | } |
|
29 | |||
40 |