We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 090976c commit d3f8b79Copy full SHA for d3f8b79
Session/Storage/Handler/PdoSessionHandler.php
@@ -626,7 +626,7 @@ protected function doRead($sessionId)
626
$selectStmt->bindParam(':id', $sessionId, \PDO::PARAM_STR);
627
$insertStmt = null;
628
629
- do {
+ while (true) {
630
$selectStmt->execute();
631
$sessionRows = $selectStmt->fetchAll(\PDO::FETCH_NUM);
632
@@ -675,7 +675,7 @@ protected function doRead($sessionId)
675
}
676
677
return '';
678
- } while (true);
+ }
679
680
681
/**
0 commit comments