We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5e63a3 commit d971f33Copy full SHA for d971f33
2 files changed
user_guide_src/source/changelogs/v4.8.0.rst
@@ -71,7 +71,7 @@ Others
71
Model
72
=====
73
74
-- Added new ``chunkArray()`` method to ``CodeIgniter\Model`` for processing large datasets in smaller chunks.
+- Added new ``chunkRows()`` method to ``CodeIgniter\Model`` for processing large datasets in smaller chunks.
75
76
Libraries
77
=========
user_guide_src/source/models/model/064.php
@@ -1,6 +1,6 @@
1
<?php
2
3
-$userModel->chunkArray(100, static function ($rows) {
+$userModel->chunkRows(100, static function ($rows) {
4
// do something.
5
// $rows is an array of rows representing chunk of 100 items.
6
});
0 commit comments