final | |
---|---|
implements |
NumberInterface |
A value object representing an integer
This class exists for type-safety purposes, to ensure that integers returned from ramsey/uuid methods as strings are truly integers and not some other kind of string.
To support large integers beyond PHP_INT_MAX and PHP_INT_MIN on both 64-bit and 32-bit systems, we store the integers as strings.
Methods | ||
---|---|---|
public
|
__construct(float|int|string|self $value)
|
# |
public
|
isNegative(): bool
|
# |
public
|
toString(): string
|
# |
public
|
__toString(): string
|
# |
public
|
jsonSerialize(): string
|
# |
public
|
serialize(): string
|
# |
public
|
__serialize(): array{string: string}
|
# |
public
|
unserialize(string $data): void
|
# |
public
|
__unserialize(array{string?: string} $data): void
|
# |