final | |
---|---|
implements |
TypeInterface |
A value object representing a timestamp
This class exists for type-safety purposes, to ensure that timestamps used by ramsey/uuid are truly timestamp integers and not some other kind of string or integer.
Methods | ||
---|---|---|
public
|
__construct(float|int|string|Integer $seconds, float|int|string|Integer $microseconds = 0)
|
# |
public
|
getSeconds(): Integer
|
# |
public
|
getMicroseconds(): Integer
|
# |
public
|
toString(): string
|
# |
public
|
__toString(): string
|
# |
public
|
jsonSerialize(): string[]
|
# |
public
|
serialize(): string
|
# |
public
|
__serialize(): array{seconds: string, microseconds: string}
|
# |
public
|
unserialize(string $data): void
|
# |
public
|
__unserialize(array{seconds?: string, microseconds?: string} $data): void
|
# |