관리-도구
편집 파일: RightIntersectionTypeMissing.php
<?php declare(strict_types=1); namespace CuyZ\Valinor\Type\Parser\Exception\Intersection; use CuyZ\Valinor\Type\Parser\Exception\InvalidType; use CuyZ\Valinor\Type\Type; use RuntimeException; /** @internal */ final class RightIntersectionTypeMissing extends RuntimeException implements InvalidType { public function __construct(Type $type) { parent::__construct("Right type is missing for intersection `{$type->toString()}&?`."); } }