관리-도구
편집 파일: ForbiddenMixedType.php
<?php declare(strict_types=1); namespace CuyZ\Valinor\Type\Parser\Exception\Union; use CuyZ\Valinor\Type\Parser\Exception\InvalidType; use LogicException; /** @internal */ final class ForbiddenMixedType extends LogicException implements InvalidType { public function __construct() { parent::__construct("Type `mixed` can only be used as a standalone type and not as a union member."); } }