Skip to content

Commit cf5830e

Browse files
Merge branch '5.3' into 5.4
* 5.3: [5.3] cs fixes [Cache] Fix saving items with no expiration through ProxyAdapter CS fixes [HttpClient] Fix tracing requests made after calling withOptions() [Cache] disable lock on CLI [VarDumper] add more "transient-on-macos" groups
2 parents 5dad378 + d2e7e61 commit cf5830e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Session/Storage/Handler/PdoSessionHandler.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -663,7 +663,7 @@ protected function doRead(string $sessionId)
663663
$selectStmt->bindParam(':id', $sessionId, \PDO::PARAM_STR);
664664
$insertStmt = null;
665665

666-
do {
666+
while (true) {
667667
$selectStmt->execute();
668668
$sessionRows = $selectStmt->fetchAll(\PDO::FETCH_NUM);
669669

@@ -712,7 +712,7 @@ protected function doRead(string $sessionId)
712712
}
713713

714714
return '';
715-
} while (true);
715+
}
716716
}
717717

718718
/**

0 commit comments

Comments
 (0)