/var/www/vhosts/ihelp.ro/_OLD/vendor/symfony/polyfill-php73
NameSizeModeActions
Resources/-0755rm
bootstrap.php9790644editdlrm
composer.json9920644editdlrm
LICENSE10650644editdlrm
Php73.php8710644editdlrm
README.md5610644editdlrm
Edit: /var/www/vhosts/ihelp.ro/_OLD/vendor/symfony/polyfill-php73/Php73.php (871B)
* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Polyfill\Php73; /** * @author Gabriel Caruso * @author Ion Bazan * * @internal */ final class Php73 { public static $startAt = 1533462603; /** * @param bool $asNum * * @return array|float|int */ public static function hrtime($asNum = false) { $ns = microtime(false); $s = substr($ns, 11) - self::$startAt; $ns = 1E9 * (float) $ns; if ($asNum) { $ns += $s * 1E9; return \PHP_INT_SIZE === 4 ? $ns : (int) $ns; } return array($s, (int) $ns); } }