diff --git a/src/Metadata/Parameter.php b/src/Metadata/Parameter.php index 1acef3d8bc..ab7017359f 100644 --- a/src/Metadata/Parameter.php +++ b/src/Metadata/Parameter.php @@ -23,12 +23,12 @@ abstract class Parameter { /** - * @param (array&array{type?: string, default?: string})|null $schema - * @param array $extraProperties - * @param ParameterProviderInterface|callable|string|null $provider - * @param list $properties a list of properties this parameter applies to (works with the :property placeholder) - * @param FilterInterface|string|null $filter - * @param mixed $constraints an array of Symfony constraints, or an array of Laravel rules + * @param array{type?: string, default?: string, ...array}|null $schema + * @param array $extraProperties + * @param ParameterProviderInterface|callable|string|null $provider + * @param list $properties a list of properties this parameter applies to (works with the :property placeholder) + * @param FilterInterface|string|null $filter + * @param mixed $constraints an array of Symfony constraints, or an array of Laravel rules */ public function __construct( protected ?string $key = null,