/var/www/vhosts/nabawater/vendor/symfony/debug/Tests
NameSizeModeActions
Exception/-0775rm
FatalErrorHandler/-0775rm
Fixtures/-0775rm
Fixtures2/-0775rm
phpt/-0775rm
DebugClassLoaderTest.php191130664editdlrm
ErrorHandlerTest.php221320664editdlrm
ExceptionHandlerTest.php40470664editdlrm
HeaderMock.php6650664editdlrm
MockExceptionHandler.php4760664editdlrm
Edit: /var/www/vhosts/nabawater/vendor/symfony/debug/Tests/HeaderMock.php (665B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\Debug; function headers_sent() { return false; } function header($str, $replace = true, $status = null) { Tests\testHeader($str, $replace, $status); } namespace Symfony\Component\Debug\Tests; function testHeader() { static $headers = []; if (!$h = \func_get_args()) { $h = $headers; $headers = []; return $h; } $headers[] = \func_get_args(); }