/home/techb158/dev.balacoffee.com/vendor/ramsey/uuid/src/Rfc4122
NameSizeModeActions
Fields.php59620644editdlrm
FieldsInterface.php38750644editdlrm
MaxTrait.php10430644editdlrm
MaxUuid.php5740644editdlrm
NilTrait.php9630644editdlrm
NilUuid.php5750644editdlrm
TimeTrait.php14210644editdlrm
UuidBuilder.php45710644editdlrm
UuidInterface.php6870644editdlrm
UuidV1.php20040644editdlrm
UuidV2.php42960644editdlrm
UuidV3.php20040644editdlrm
UuidV4.php19240644editdlrm
UuidV5.php20090644editdlrm
UuidV6.php7810644editdlrm
UuidV7.php21070644editdlrm
UuidV8.php23410644editdlrm
Validator.php14310644editdlrm
VariantTrait.php26800644editdlrm
VersionTrait.php15190644editdlrm
Edit: /home/techb158/dev.balacoffee.com/vendor/ramsey/uuid/src/Rfc4122/MaxTrait.php (1043B)
* @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Rfc4122; /** * Provides common functionality for max UUIDs * * The max UUID is special form of UUID that is specified to have all 128 bits * set to one. It is the inverse of the nil UUID. * * @link https://datatracker.ietf.org/doc/html/draft-ietf-uuidrev-rfc4122bis-00#section-5.10 Max UUID * * @psalm-immutable */ trait MaxTrait { /** * Returns the bytes that comprise the fields */ abstract public function getBytes(): string; /** * Returns true if the byte string represents a max UUID */ public function isMax(): bool { return $this->getBytes() === "\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff\xff"; } }