1 | <?php |
||
5 | trait BulkSqlTrait |
||
6 | { |
||
7 | /** |
||
8 | * Iterate over prepared items to be executed, to prepare statement and bind params |
||
9 | * |
||
10 | * @param array $items |
||
11 | * @param callable $callback |
||
12 | * |
||
13 | * @return array |
||
14 | */ |
||
15 | private function iterateOverItems(array $items, callable $callback) : array |
||
26 | } |
||
27 |