JFIF x x C C " } !1AQa "q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w !1AQ aq"2B #3Rbr{
File "KeyTransformerHasTooManyParameters.php"
Full Path: /home/palsarh/web/palsarh.in/public_html/vendor/cuyz/valinor/src/Normalizer/Exception/KeyTransformerHasTooManyParameters.php
File size: 472 bytes
MIME-type: text/x-php
Charset: utf-8
<?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`.",
);
}
}