/home/techb158/ileadtechnology.com/vendor/ramsey/uuid/src/Type
NameSizeModeActions
Decimal.php32360644editdlrm
Hexadecimal.php27020644editdlrm
Integer.php37550644editdlrm
NumberInterface.php6350644editdlrm
Time.php35200644editdlrm
TypeInterface.php6610644editdlrm
Edit: /home/techb158/ileadtechnology.com/vendor/ramsey/uuid/src/Type/NumberInterface.php (635B)
* @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Type; /** * NumberInterface ensures consistency in numeric values returned by ramsey/uuid * * @psalm-immutable */ interface NumberInterface extends TypeInterface { /** * Returns true if this number is less than zero */ public function isNegative(): bool; }