/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/HttpFoundation/Exception/SignedUriException.php
22 строки
522 B
Christian Flothmann
replace HTTP response status code constants with their values
15 сен 2025, 12:17
15 сен 2025, 12:17
cfc0b8c
Код
Авторство
О чём код?
<?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; use Symfony\Component\HttpKernel\Attribute\WithHttpStatus; /** * @author Kevin Bond <kevinbond@gmail.com> */ #[WithHttpStatus(404)] abstract class SignedUriException extends \RuntimeException implements ExceptionInterface { }