mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-18 20:57:53 +09:00
Update dependencies
This commit is contained in:
@@ -14,6 +14,6 @@ namespace Symfony\Component\HttpFoundation\Exception;
|
||||
/**
|
||||
* Raised when a user sends a malformed request.
|
||||
*/
|
||||
class BadRequestException extends \UnexpectedValueException implements RequestExceptionInterface
|
||||
class BadRequestException extends UnexpectedValueException implements RequestExceptionInterface
|
||||
{
|
||||
}
|
||||
|
||||
@@ -16,6 +16,6 @@ namespace Symfony\Component\HttpFoundation\Exception;
|
||||
*
|
||||
* @author Magnus Nordlander <magnus@fervo.se>
|
||||
*/
|
||||
class ConflictingHeadersException extends \UnexpectedValueException implements RequestExceptionInterface
|
||||
class ConflictingHeadersException extends UnexpectedValueException implements RequestExceptionInterface
|
||||
{
|
||||
}
|
||||
|
||||
@@ -16,6 +16,6 @@ namespace Symfony\Component\HttpFoundation\Exception;
|
||||
*
|
||||
* @author Tobias Nyholm <tobias.nyholm@gmail.com>
|
||||
*/
|
||||
final class JsonException extends \UnexpectedValueException implements RequestExceptionInterface
|
||||
final class JsonException extends UnexpectedValueException implements RequestExceptionInterface
|
||||
{
|
||||
}
|
||||
|
||||
@@ -12,7 +12,7 @@
|
||||
namespace Symfony\Component\HttpFoundation\Exception;
|
||||
|
||||
/**
|
||||
* Raised when a session does not exists. This happens in the following cases:
|
||||
* Raised when a session does not exist. This happens in the following cases:
|
||||
* - the session is not enabled
|
||||
* - attempt to read a session outside a request context (ie. cli script).
|
||||
*
|
||||
@@ -20,7 +20,7 @@ namespace Symfony\Component\HttpFoundation\Exception;
|
||||
*/
|
||||
class SessionNotFoundException extends \LogicException implements RequestExceptionInterface
|
||||
{
|
||||
public function __construct(string $message = 'There is currently no session available.', int $code = 0, \Throwable $previous = null)
|
||||
public function __construct(string $message = 'There is currently no session available.', int $code = 0, ?\Throwable $previous = null)
|
||||
{
|
||||
parent::__construct($message, $code, $previous);
|
||||
}
|
||||
|
||||
@@ -15,6 +15,6 @@ namespace Symfony\Component\HttpFoundation\Exception;
|
||||
* Raised when a user has performed an operation that should be considered
|
||||
* suspicious from a security perspective.
|
||||
*/
|
||||
class SuspiciousOperationException extends \UnexpectedValueException implements RequestExceptionInterface
|
||||
class SuspiciousOperationException extends UnexpectedValueException implements RequestExceptionInterface
|
||||
{
|
||||
}
|
||||
|
||||
16
vendor/symfony/http-foundation/Exception/UnexpectedValueException.php
vendored
Normal file
16
vendor/symfony/http-foundation/Exception/UnexpectedValueException.php
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
/*
|
||||
* This file is part of the Symfony package.
|
||||
*
|
||||
* (c) Fabien Potencier <fabien@symfony.com>
|
||||
*
|
||||
* For the full copyright and license information, please view the LICENSE
|
||||
* file that was distributed with this source code.
|
||||
*/
|
||||
|
||||
namespace Symfony\Component\HttpFoundation\Exception;
|
||||
|
||||
class UnexpectedValueException extends \UnexpectedValueException
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user