From fec09c3dc3bf649cf5472814fa2445a685e3d393 Mon Sep 17 00:00:00 2001 From: Renaud Grand Date: Thu, 4 Jul 2024 12:16:02 +0200 Subject: [PATCH] chore: Rename example parameter (#4) --- tests/Examples/Valid/ReferencesArray/AuthorDTO.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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, ) {} }