apply lint

This commit is contained in:
Simon Vieille 2025-02-05 15:00:13 +01:00
commit c9537c5112
79 changed files with 279 additions and 300 deletions

View file

@ -28,13 +28,6 @@ class ConferenceRepositoryQuery extends RepositoryQuery
;
}
protected function filterHandler(string $name, $value)
{
if ('themeType' === $name) {
return $this->withThemeType($value);
}
}
public function latest(int $max = 5)
{
return $this
@ -42,4 +35,11 @@ class ConferenceRepositoryQuery extends RepositoryQuery
->setMaxResults($max)
;
}
protected function filterHandler(string $name, $value)
{
if ('themeType' === $name) {
return $this->withThemeType($value);
}
}
}