관리-도구
편집 파일: ObjectType.php
<?php declare(strict_types=1); namespace CuyZ\Valinor\Type; /** @internal */ interface ObjectType extends Type { /** * @return class-string */ public function className(): string; public function nativeType(): ObjectType; }