/home/techb158/dev.balacoffee.com/vendor/ramsey/uuid/src/Type
NameSizeModeActions
Decimal.php31150644editdlrm
Hexadecimal.php27110644editdlrm
Integer.php38750644editdlrm
NumberInterface.php6350644editdlrm
Time.php34480644editdlrm
TypeInterface.php6610644editdlrm
Edit: /home/techb158/dev.balacoffee.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; }