Skip to content

Commit fd591b0

Browse files
fix(lint): remove whitespaces
Signed-off-by: Andy Scherzinger <[email protected]>
1 parent 55351cf commit fd591b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

apps/files_reminders/lib/Controller/ApiController.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ public function get(int $fileId): DataResponse {
5757
'dueDate' => $reminder->getDueDate()->format(DateTimeInterface::ATOM), // ISO 8601
5858
];
5959
return new DataResponse($reminderData, Http::STATUS_OK);
60-
} catch (NodeNotFoundException | DoesNotExistException $e) {
60+
} catch (NodeNotFoundException|DoesNotExistException $e) {
6161
$reminderData = [
6262
'dueDate' => null,
6363
];
@@ -125,7 +125,7 @@ public function remove(int $fileId): DataResponse {
125125
try {
126126
$this->reminderService->remove($user, $fileId);
127127
return new DataResponse([], Http::STATUS_OK);
128-
} catch (NodeNotFoundException | DoesNotExistException $e) {
128+
} catch (NodeNotFoundException|DoesNotExistException $e) {
129129
return new DataResponse([], Http::STATUS_NOT_FOUND);
130130
}
131131
}

0 commit comments

Comments
 (0)