whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Internal
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Internal/suppress.php
<?php declare(strict_types=1); namespace Psl\Internal; use Closure; use function error_reporting; /** * @template T * * @param (Closure(): T) $fun * * @return T * * @internal */ function suppress(Closure $fun) { $previous_level = error_reporting(0); try { return $fun(); } finally { error_reporting($previous_level); } }
Copyright ©2021 || Defacer Indonesia