From 99c79c966bfa9547921876460b6b0f8e716c6a94 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?J=C3=A9r=C3=A9my=20Deruss=C3=A9?= Date: Sat, 6 Feb 2021 11:28:18 +0100 Subject: [PATCH] Fix FQDN class --- .../HttpFoundation/Exception/SessionNotFoundException.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Symfony/Component/HttpFoundation/Exception/SessionNotFoundException.php b/src/Symfony/Component/HttpFoundation/Exception/SessionNotFoundException.php index 4ccfb18d3f..eb7acbbafc 100644 --- a/src/Symfony/Component/HttpFoundation/Exception/SessionNotFoundException.php +++ b/src/Symfony/Component/HttpFoundation/Exception/SessionNotFoundException.php @@ -20,7 +20,7 @@ namespace Symfony\Component\HttpFoundation\Exception; */ class SessionNotFoundException extends \LogicException implements RequestExceptionInterface { - public function __construct($message = 'There is currently no session available.', $code = 0, Throwable $previous = null) + public function __construct($message = 'There is currently no session available.', $code = 0, \Throwable $previous = null) { parent::__construct($message, $code, $previous); }