Skip to content

Commit 1ff8149

Browse files
committed
fixed CS
1 parent 77925fb commit 1ff8149

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Session/Storage/Handler/PdoSessionHandler.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -694,8 +694,7 @@ private function getMergeStatement($sessionId, $data, $maxlifetime)
694694
$mergeStmt->bindParam(6, $data, \PDO::PARAM_LOB);
695695
$mergeStmt->bindParam(7, $maxlifetime, \PDO::PARAM_INT);
696696
$mergeStmt->bindValue(8, time(), \PDO::PARAM_INT);
697-
}
698-
else {
697+
} else {
699698
$mergeStmt->bindParam(':id', $sessionId, \PDO::PARAM_STR);
700699
$mergeStmt->bindParam(':data', $data, \PDO::PARAM_LOB);
701700
$mergeStmt->bindParam(':lifetime', $maxlifetime, \PDO::PARAM_INT);

0 commit comments

Comments
 (0)