| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 6 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 58 | 1 | public function build(array $candidates, $skipAlreadyDeployed) |
|
| 59 | { |
||
| 60 | 1 | return array_filter(array_map( |
|
| 61 | 1 | function(Candidate $candidate) use ($skipAlreadyDeployed) { |
|
| 62 | 1 | return DataRowsBuilder::buildCandidateRow($candidate, $skipAlreadyDeployed); |
|
| 63 | 1 | }, |
|
| 64 | $candidates |
||
| 65 | 1 | )); |
|
| 66 | } |
||
| 67 | } |
||
| 68 |