style: Apply php-cs-fixer updates

Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
Julius Härtl
2024-02-05 07:14:04 +01:00
parent f83290f075
commit 1fdc164462
13 changed files with 18 additions and 18 deletions

View File

@@ -75,7 +75,7 @@ class SearchService {
$this->urlGenerator = $urlGenerator;
}
public function searchCards(string $term, int $limit = null, ?int $cursor = null): array {
public function searchCards(string $term, ?int $limit = null, ?int $cursor = null): array {
$boards = $this->boardService->getUserBoards();
$boardIds = array_map(static function (Board $board) {
return $board->getId();