First Commit
This commit is contained in:
@@ -0,0 +1,23 @@
|
||||
<?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
|
||||
{
|
||||
}
|
||||
Reference in New Issue
Block a user