Files
eCert-MBIP/vendor/thecodingmachine/safe/generated/8.1/fpm.php

19 lines
296 B
PHP

<?php
namespace Safe;
use Safe\Exceptions\FpmException;
/**
* @throws FpmException
*
*/
function fastcgi_finish_request(): void
{
error_clear_last();
$safeResult = \fastcgi_finish_request();
if ($safeResult === false) {
throw FpmException::createFromPhpError();
}
}