From f11ec000d8d64407625918698b1bff7c858c3984 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 26 Dec 2020 13:18:10 +0100 Subject: [PATCH] align = --- Controller/ApiController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/ApiController.php b/Controller/ApiController.php index c18cede..95d6961 100755 --- a/Controller/ApiController.php +++ b/Controller/ApiController.php @@ -180,7 +180,7 @@ final class ApiController extends Controller */ public function createKanbanCardCommentFromRequest(RequestAbstract $request) : KanbanCardComment { - $comment = new KanbanCardComment(); + $comment = new KanbanCardComment(); $comment->description = Markdown::parse((string) ($request->getData('plain') ?? '')); $comment->descriptionRaw = (string) ($request->getData('plain') ?? ''); $comment->setCard((int) $request->getData('card'));