Skip to content

Commit

Permalink
Merge pull request #34 from gsteel/fix-exception-message
Browse files Browse the repository at this point in the history
Fix missing space in exception message
  • Loading branch information
Ocramius committed Jul 29, 2022
2 parents 6a322af + 73f798f commit d284097
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Exception/SessionNotInitializedException.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static function forMissingRequestAttribute(): self
return new self(
sprintf(
'A session has not been initialized. Ensure that you pipe the %s middleware prior to'
. 'attempting to retrieve or use a session instance',
. ' attempting to retrieve or use a session instance.',
SessionMiddleware::class
)
);
Expand Down

0 comments on commit d284097

Please sign in to comment.