| Conditions | 5 |
| Paths | 5 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | public function shouldProcess($label, $data) |
||
| 23 | { |
||
| 24 | if (!is_array($data)) { |
||
| 25 | return false; |
||
| 26 | } |
||
| 27 | |||
| 28 | return is_numeric($label) |
||
| 29 | && isset($data[PatchDefinition::LABEL], $data[PatchDefinition::SOURCE]) |
||
| 30 | && is_array($data[PatchDefinition::SOURCE]) |
||
| 31 | && is_array(reset($data[PatchDefinition::SOURCE])); |
||
| 32 | } |
||
| 43 |