From 6373077c403c0c645e1f9bbe82266a941a447fea Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 24 Nov 2020 18:44:22 +0100 Subject: [PATCH] autofixes --- Controller/ApiController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/ApiController.php b/Controller/ApiController.php index 22dc37b..4ad2b27 100755 --- a/Controller/ApiController.php +++ b/Controller/ApiController.php @@ -102,7 +102,7 @@ final class ApiController extends Controller */ private function createBoardFromRequest(RequestAbstract $request) : DashboardBoard { - $board = new DashboardBoard(); + $board = new DashboardBoard(); $board->title = (string) ($request->getData('title') ?? ''); $board->setAccount($request->header->account); $board->setStatus(DashboardBoardStatus::ACTIVE);