/
githubmirror
/
symfony
Обзор
Документация
Войти
/
githubmirror
/
symfony
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
8.2
src/Symfony/Component/ErrorHandler/Error/MaxExecutionTimeError.php
23 строки
590 B
Nicolas Grekas
[ErrorHandler] Various fixes and hardenings
18 май 2026, 22:17
18 май 2026, 22:17
0f5ada5
Код
Авторство
О чём код?
<?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\ErrorHandler\Error; /** * Raised on shutdown when PHP's max_execution_time is exceeded. * * Instances bypass http_response_code() and header() calls in the default * renderer to avoid PHP 8.5+ warnings when adjusting response state after * the timeout has fired. */ class MaxExecutionTimeError extends FatalError { }