From e00bda84fa9fbc187f556bb87c05a0e7226847ce Mon Sep 17 00:00:00 2001 From: Claus-Justus Heine Date: Thu, 27 Apr 2023 13:12:45 +0200 Subject: [PATCH] fn() -> fn () --- lib/Service/CategoriesService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/Service/CategoriesService.php b/lib/Service/CategoriesService.php index 0e6b5059b5..ebfbe54029 100644 --- a/lib/Service/CategoriesService.php +++ b/lib/Service/CategoriesService.php @@ -89,7 +89,7 @@ private function getUsedCategories(): array { // Avoid injecting "broken" categories into the UI (avoid empty // categories and categories surrounded by spaces) - $categories = array_filter(array_map(fn($label) => trim($label), array_unique(array_merge(...$categories)))); + $categories = array_filter(array_map(fn ($label) => trim($label), array_unique(array_merge(...$categories)))); return $categories; }