Total Complexity | 6 |
Total Lines | 31 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 2 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class BatchQueryResult extends BaseBatchQueryResult |
||
11 | { |
||
12 | /** |
||
13 | * @var int MSSQL error code for exception that is thrown when last batch is size less than specified batch size |
||
14 | * |
||
15 | * {@see https://github.com/yiisoft/yii2/issues/10023} |
||
16 | */ |
||
17 | private int $mssqlNoMoreRowsErrorCode = -13; |
||
18 | |||
19 | /** |
||
20 | * Reads and collects rows for batch. |
||
21 | */ |
||
22 | 3 | protected function getRows(): array |
|
43 |