Upgrade framework

This commit is contained in:
2023-11-14 16:54:35 +01:00
parent 1648a5cd42
commit 4fcf6fffcc
10548 changed files with 693138 additions and 466698 deletions

View File

@@ -16,19 +16,15 @@ namespace Symfony\Component\HttpKernel\Exception;
*
* @author Kris Wallsmith <kris@symfony.com>
*/
interface HttpExceptionInterface
interface HttpExceptionInterface extends \Throwable
{
/**
* Returns the status code.
*
* @return int An HTTP response status code
*/
public function getStatusCode();
public function getStatusCode(): int;
/**
* Returns response headers.
*
* @return array Response headers
*/
public function getHeaders();
public function getHeaders(): array;
}