PSR 2 compliance

This commit is contained in:
Simon Vieille 2021-03-30 21:17:05 +02:00
commit 835a28aa34
5 changed files with 6 additions and 5 deletions

View file

@ -123,7 +123,8 @@ class PostRepositoryQuery extends RepositoryQuery
if ($tag) {
$this
->andWhere('.tags LIKE :tag')
->setParameter(':tag', '%'.$tag.'%');
->setParameter(':tag', '%'.$tag.'%')
;
}
return $this;