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