From eaaa3467211f751ff6c35f7e37573ef0fb92a031 Mon Sep 17 00:00:00 2001 From: Damien VERNER Date: Wed, 18 Jan 2023 18:21:00 +0100 Subject: [PATCH] Fix too restrictive return type --- Entity/Doctrine/Parameter.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Entity/Doctrine/Parameter.php b/Entity/Doctrine/Parameter.php index 8d2f053..ca43545 100644 --- a/Entity/Doctrine/Parameter.php +++ b/Entity/Doctrine/Parameter.php @@ -36,7 +36,7 @@ class Parameter */ private $value; /** - * @var stdClass + * @var mixed * * @ORM\Column(name="params", type="object", nullable=true) * @SQLIAdmin\EntityProperty( @@ -106,7 +106,7 @@ public function setValue(string $value): Parameter /** * @return mixed */ - public function getParams(): stdClass + public function getParams() { return $this->params; }