From a01fd1e4f0c09793f891516cbc93d06a33ca70ba Mon Sep 17 00:00:00 2001 From: Guilhem Niot Date: Sat, 28 Nov 2020 16:11:05 +0100 Subject: [PATCH] Fix error --- Tests/Functional/Entity/ArrayItemsError/Bar.php | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/Tests/Functional/Entity/ArrayItemsError/Bar.php b/Tests/Functional/Entity/ArrayItemsError/Bar.php index 76a8073..214e99f 100644 --- a/Tests/Functional/Entity/ArrayItemsError/Bar.php +++ b/Tests/Functional/Entity/ArrayItemsError/Bar.php @@ -16,8 +16,7 @@ namespace Nelmio\ApiDocBundle\Tests\Functional\Entity\ArrayItemsError; */ class Bar { - /** - * @var array[] - */ public $things; + + public function addThing(array $thing) { } }