Skip to content

Commit ab66255

Browse files
Backport type fixes
1 parent 77846ae commit ab66255

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Exception/SessionNotFoundException.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
*/
2121
class SessionNotFoundException extends \LogicException implements RequestExceptionInterface
2222
{
23-
public function __construct($message = 'There is currently no session available.', $code = 0, \Throwable $previous = null)
23+
public function __construct(string $message = 'There is currently no session available.', int $code = 0, \Throwable $previous = null)
2424
{
2525
parent::__construct($message, $code, $previous);
2626
}

0 commit comments

Comments
 (0)