Skip to content

Commit 38549ae

Browse files
committed
Fixed: Re-enabled fetchRowsLazy for PHP5.5
1 parent 696f4b5 commit 38549ae

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Builder/RunnableSelect.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ public function fetchRows(\Closure $callback = null) {
7676
* @return array[]|\Generator
7777
*/
7878
public function fetchRowsLazy(\Closure $callback = null) {
79-
if(version_compare(PHP_VERSION, '5.5', '<=')) {
79+
if(version_compare(PHP_VERSION, '5.5', '<')) {
8080
return $this->fetchRows($callback);
8181
}
8282
$statement = $this->createStatement();

0 commit comments

Comments
 (0)