Skip to content

Commit 3ffd7e5

Browse files
committed
Update RunnableSelect.php
Just to satisfy SLinsight
1 parent c40a6aa commit 3ffd7e5

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

src/Builder/RunnableSelect.php

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
namespace Kir\MySQL\Builder;
33

44
use Closure;
5-
use Generator;
65
use IteratorAggregate;
76
use Kir\MySQL\Builder\Helpers\FieldTypeProvider;
87
use Kir\MySQL\Builder\Helpers\FieldValueConverter;
@@ -77,7 +76,7 @@ public function fetchRows(Closure $callback = null) {
7776

7877
/**
7978
* @param Closure $callback
80-
* @return array[]|Generator
79+
* @return array[]|\Generator
8180
*/
8281
public function fetchRowsLazy(Closure $callback = null) {
8382
if(version_compare(PHP_VERSION, '5.5', '<')) {
@@ -208,7 +207,7 @@ private function createStatement() {
208207
}
209208

210209
/**
211-
* @return Traversable|array[]|Generator
210+
* @return Traversable|array[]|\Generator
212211
*/
213212
public function getIterator() {
214213
return $this->fetchRowsLazy();

0 commit comments

Comments
 (0)