Conditions | 2 |
Paths | 2 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
16 | 11 | public function apply($dataSource) |
|
17 | { |
||
18 | /** @var InitializeRowsOperation $operation */ |
||
19 | 11 | $operation = $this->operation; |
|
20 | 11 | $rowClass = $operation->getRowClass(); |
|
21 | 11 | foreach($dataSource as $row) { |
|
22 | 10 | yield new $rowClass($operation->getDynamicFields(), $row); |
|
23 | 11 | } |
|
24 | 11 | } |
|
25 | } |
||
26 |