관리-도구
편집 파일: DumpableType.php
<?php declare(strict_types=1); namespace CuyZ\Valinor\Type; /** @internal */ interface DumpableType extends Type { /** * Returns parts of the type which will be used to recursively dump it. * * @return iterable<non-empty-string|Type> */ public function dumpParts(): iterable; }