/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/TypeInterface.php (661B)
* @license http://opensource.org/licenses/MIT MIT */ declare(strict_types=1); namespace Ramsey\Uuid\Type; use JsonSerializable; use Serializable; /** * TypeInterface ensures consistency in typed values returned by ramsey/uuid * * @psalm-immutable */ interface TypeInterface extends JsonSerializable, Serializable { public function toString(): string; public function __toString(): string; }