File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -129,7 +129,7 @@ protected function fetchData()
129129 if ($ this ->_iterator === null ) {
130130 $ this ->query ->addOptions (['batchSize ' => $ this ->batchSize ]);
131131 $ cursor = $ this ->query ->buildCursor ($ this ->db );
132- $ token = 'fetch cursor id = ' . $ cursor ->getId (true );
132+ $ token = 'fetch cursor id = ' . $ cursor ->getId ();
133133 Yii::info ($ token , __METHOD__ );
134134
135135 if ($ cursor instanceof \Iterator) {
Original file line number Diff line number Diff line change @@ -212,7 +212,7 @@ public function buildCursor($db = null)
212212 */
213213 protected function fetchRows ($ cursor , $ all = true , $ indexBy = null )
214214 {
215- $ token = 'fetch cursor id = ' . $ cursor ->getId (true );
215+ $ token = 'fetch cursor id = ' . $ cursor ->getId ();
216216 Yii::info ($ token , __METHOD__ );
217217 try {
218218 Yii::beginProfile ($ token , __METHOD__ );
Original file line number Diff line number Diff line change @@ -82,7 +82,7 @@ public function toArray()
8282 */
8383 public function getId ()
8484 {
85- return $ this ->getInnerIterator ()->getId (true );
85+ return $ this ->getInnerIterator ()->getId ();
8686 }
8787
8888 /**
You can’t perform that action at this time.
0 commit comments