Skip to content

Commit

Permalink
fix(lint): remove whitespaces
Browse files Browse the repository at this point in the history
Signed-off-by: Andy Scherzinger <[email protected]>
  • Loading branch information
AndyScherzinger committed Feb 20, 2025
1 parent 55351cf commit fd591b0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/files_reminders/lib/Controller/ApiController.php
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public function get(int $fileId): DataResponse {
'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,
];
Expand Down Expand Up @@ -125,7 +125,7 @@ public function remove(int $fileId): DataResponse {
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);
}
}
Expand Down

0 comments on commit fd591b0

Please sign in to comment.