From 730543f17e0faa23a2e04d1c4191444be4506e37 Mon Sep 17 00:00:00 2001 From: philippe-unitiz Date: Tue, 21 Aug 2018 15:21:56 +0200 Subject: [PATCH] Fix constructor and add() argument types in Query\Base --- lib/Doctrine/ORM/Query/Expr/Base.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Doctrine/ORM/Query/Expr/Base.php b/lib/Doctrine/ORM/Query/Expr/Base.php index 80d6f48048..90ab101e12 100644 --- a/lib/Doctrine/ORM/Query/Expr/Base.php +++ b/lib/Doctrine/ORM/Query/Expr/Base.php @@ -32,7 +32,7 @@ abstract class Base protected $parts = []; /** - * @param mixed[] $args + * @param mixed $args */ public function __construct($args = []) { @@ -40,7 +40,7 @@ public function __construct($args = []) } /** - * @param mixed[] $args + * @param mixed $args * * @return Base */