fix(richobjectstrings): Improve array type

Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
Joas Schilling 2024-11-07 09:03:36 +01:00
parent c3c8b7e2a3
commit 5faa6e48e5
No known key found for this signature in database
GPG key ID: F72FA5B49FFA96B0
2 changed files with 2 additions and 2 deletions

View file

@ -27,7 +27,7 @@ class Validator implements IValidator {
/**
* @param string $subject
* @param array<non-empty-string, array> $parameters
* @param array<non-empty-string, array<non-empty-string, string>> $parameters
* @throws InvalidObjectExeption
* @since 11.0.0
*/

View file

@ -22,7 +22,7 @@ interface IValidator {
/**
* @param string $subject
* @param array<non-empty-string, array> $parameters
* @param array<non-empty-string, array<non-empty-string, string>> $parameters
* @throws InvalidObjectExeption
* @since 11.0.0
*/