Conditions | 3 |
Paths | 2 |
Total Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 3 |
Changes | 0 |
1 | <?php |
||
21 | 1 | public function execute(ProcessState $state) |
|
22 | { |
||
23 | 1 | $this->data[] = $state->getData(); |
|
24 | |||
25 | 1 | if (count($this->data) >= $state->getOptions()['batch_count'] || $state->getLoop()['last'] ?? false) { |
|
26 | 1 | $state->setData($this->data); |
|
27 | 1 | $this->data = []; |
|
28 | |||
29 | 1 | return; |
|
30 | } |
||
31 | |||
32 | 1 | $state->markIgnore(); |
|
33 | 1 | } |
|
35 |