Skip to content

Commit

Permalink
fix(chore): allow to getFilteredParameters to nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
jorisdugue committed Jan 30, 2024
1 parent 9df2181 commit 1bb324d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Entity/Content.php
Original file line number Diff line number Diff line change
Expand Up @@ -90,9 +90,9 @@ public function setParameters(string $parameters)
$this->parameters = $parameters;
}
/**
* @return string
* @return string|null
*/
public function getFilteredParameters(): string
public function getFilteredParameters(): ?string
{
return $this->filteredParameters;
}
Expand Down

0 comments on commit 1bb324d

Please sign in to comment.