관리-도구
편집 파일: KeyTransformerHasTooManyParameters.php
<?php declare(strict_types=1); namespace CuyZ\Valinor\Normalizer\Exception; use CuyZ\Valinor\Definition\MethodDefinition; use LogicException; /** @internal */ final class KeyTransformerHasTooManyParameters extends LogicException { public function __construct(MethodDefinition $method) { parent::__construct( "Key transformer must have at most 1 parameter, {$method->parameters->count()} given for `$method->signature`.", ); } }