From f2b6625db814488e873d19251a849a05e5e0d067 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Sat, 10 Aug 2019 23:15:25 +0200 Subject: [PATCH] draft time recording --- Controller/ApiController.php | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) diff --git a/Controller/ApiController.php b/Controller/ApiController.php index a61255b..a54115c 100644 --- a/Controller/ApiController.php +++ b/Controller/ApiController.php @@ -165,4 +165,22 @@ final class ApiController extends Controller return $component; } + + /** + * Api method to create a board + * + * @param RequestAbstract $request Request + * @param ResponseAbstract $response Response + * @param mixed $data Generic data + * + * @return void + * + * @api + * + * @since 1.0.0 + */ + public function apiComponentAdd(RequestAbstract $request, ResponseAbstract $response, $data = null) : void + { + return; + } }