Skip to content

Commit d3f8b79

Browse files
CS fixes
1 parent 090976c commit d3f8b79

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
@@ -626,7 +626,7 @@ protected function doRead($sessionId)
626626
$selectStmt->bindParam(':id', $sessionId, \PDO::PARAM_STR);
627627
$insertStmt = null;
628628

629-
do {
629+
while (true) {
630630
$selectStmt->execute();
631631
$sessionRows = $selectStmt->fetchAll(\PDO::FETCH_NUM);
632632

@@ -675,7 +675,7 @@ protected function doRead($sessionId)
675675
}
676676

677677
return '';
678-
} while (true);
678+
}
679679
}
680680

681681
/**

0 commit comments

Comments
 (0)