Skip to content

Commit

Permalink
Merge pull request #37 from DocDams/dev-ibexa3.x
Browse files Browse the repository at this point in the history
Fix too restrictive return type
  • Loading branch information
DocDams authored Feb 1, 2023
2 parents 1ba80fa + eaaa346 commit 5a0459c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Entity/Doctrine/Parameter.php
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ class Parameter
*/
private $value;
/**
* @var stdClass
* @var mixed
*
* @ORM\Column(name="params", type="object", nullable=true)
* @SQLIAdmin\EntityProperty(
Expand Down Expand Up @@ -106,7 +106,7 @@ public function setValue(string $value): Parameter
/**
* @return mixed
*/
public function getParams(): stdClass
public function getParams()
{
return $this->params;
}
Expand Down

0 comments on commit 5a0459c

Please sign in to comment.