From fd591b0b9b9209d88b19ca5d0a9302b4b1e6028e Mon Sep 17 00:00:00 2001 From: Andy Scherzinger Date: Thu, 20 Feb 2025 15:34:21 +0100 Subject: fix(lint): remove whitespaces Signed-off-by: Andy Scherzinger --- apps/files_reminders/lib/Controller/ApiController.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/files_reminders/lib/Controller/ApiController.php b/apps/files_reminders/lib/Controller/ApiController.php index 523eca1b30c..ee29b7ce494 100644 --- a/apps/files_reminders/lib/Controller/ApiController.php +++ b/apps/files_reminders/lib/Controller/ApiController.php @@ -57,7 +57,7 @@ class ApiController extends OCSController { 'dueDate' => $reminder->getDueDate()->format(DateTimeInterface::ATOM), // ISO 8601 ]; return new DataResponse($reminderData, Http::STATUS_OK); - } catch (NodeNotFoundException | DoesNotExistException $e) { + } catch (NodeNotFoundException|DoesNotExistException $e) { $reminderData = [ 'dueDate' => null, ]; @@ -125,7 +125,7 @@ class ApiController extends OCSController { try { $this->reminderService->remove($user, $fileId); return new DataResponse([], Http::STATUS_OK); - } catch (NodeNotFoundException | DoesNotExistException $e) { + } catch (NodeNotFoundException|DoesNotExistException $e) { return new DataResponse([], Http::STATUS_NOT_FOUND); } } -- cgit v1.2.3