whoami7 - Manager
:
/
home
/
kckglobal
/
www
/
portal
/
vendor
/
azjezz
/
psl
/
src
/
Psl
/
Math
/
Upload File:
files >> /home/kckglobal/www/portal/vendor/azjezz/psl/src/Psl/Math/abs.php
<?php declare(strict_types=1); namespace Psl\Math; /** * Returns the absolute value of the given number. * * @template T of int|float * * @param T $number * * @return T * * @pure * * @see https://github.com/vimeo/psalm/issues/2152 * * @psalm-suppress InvalidReturnType * @psalm-suppress InvalidReturnStatement */ function abs(int|float $number): int|float { return $number < 0 ? -$number : $number; }
Copyright ©2021 || Defacer Indonesia