diff --git a/tests/Examples/Valid/ReferencesArray/AuthorDTO.php b/tests/Examples/Valid/ReferencesArray/AuthorDTO.php index 0259536..8965143 100644 --- a/tests/Examples/Valid/ReferencesArray/AuthorDTO.php +++ b/tests/Examples/Valid/ReferencesArray/AuthorDTO.php @@ -10,7 +10,7 @@ class AuthorDTO { /** - * @param array $leafs + * @param array $books */ public function __construct( #[Identifier] @@ -19,6 +19,6 @@ public function __construct( #[InboundPropertyName('author_name')] public string $name, #[ReferencesArray(BookDTO::class)] - public array $leafs, + public array $books, ) {} }