Skip to content

Commit

Permalink
Run CS fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
mbabker committed Aug 26, 2024
1 parent 8331b41 commit 8f56e00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Session/Middleware/InitializeSession.php
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ public function onOpen(Connection $connection): void
if ($this->optionsHandler->get('session.auto_start')) {
try {
$session->start();
} catch (InvalidSession | SessionMisconfigured $exception) {
} catch (InvalidSession|SessionMisconfigured $exception) {
// Something went wrong trying to use the session data, bail out
$this->close($connection, 500);

Expand Down

0 comments on commit 8f56e00

Please sign in to comment.