From 8dda96076fad0c9c8e662ea008de262068a4c0a4 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Thu, 21 Apr 2022 23:52:00 +0200 Subject: [PATCH] doc fixes --- CONTRIBUTING.md | 2 +- Controller/ApiController.php | 2 +- Controller/BackendController.php | 8 ++++---- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index e9b4371..4bbb819 100755 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -16,7 +16,7 @@ Generally, the development philosophy is result orientated. This means that anyo Developers are encouraged to pick open tasks with high priorities according to their own skill level. Senior developers may directly assign tasks to developers based on their importance. New developers may find it easier to start with a task that has a low priority as they often also have a lower difficulty. -Open tasks can be found in the project overview: [PROJECT.md](../Project/PROJECT.md) +Open tasks can be found in the project overview: [PROJECT.md](https://github.com/Karaka-Management/Organization-Guide/blob/master/Project/PROJECT.md) Tasks currently in development are prefixed in the priority column with an asterisk `*` and a name tag in the task description of the developer who is working on the task. diff --git a/Controller/ApiController.php b/Controller/ApiController.php index d0eb363..0a48ae2 100755 --- a/Controller/ApiController.php +++ b/Controller/ApiController.php @@ -72,7 +72,7 @@ final class ApiController extends Controller * * @since 1.0.0 */ - public function apiDrawCreate(RequestAbstract $request, ResponseAbstract $response, $data = null) : void + public function apiDrawCreate(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : void { if (!empty($val = $this->validateDrawCreate($request))) { $response->set('draw_create', new FormValidation($val)); diff --git a/Controller/BackendController.php b/Controller/BackendController.php index a073f47..db5509e 100755 --- a/Controller/BackendController.php +++ b/Controller/BackendController.php @@ -45,7 +45,7 @@ final class BackendController extends Controller * @since 1.0.0 * @codeCoverageIgnore */ - public function setUpDrawEditor(RequestAbstract $request, ResponseAbstract $response, $data = null) : void + public function setUpDrawEditor(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : void { /** @var \phpOMS\Model\Html\Head $head */ $head = $response->get('Content')->getData('head'); @@ -66,7 +66,7 @@ final class BackendController extends Controller * @since 1.0.0 * @codeCoverageIgnore */ - public function viewDrawCreate(RequestAbstract $request, ResponseAbstract $response, $data = null) : RenderableInterface + public function viewDrawCreate(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface { $view = new View($this->app->l11nManager, $request, $response); @@ -88,7 +88,7 @@ final class BackendController extends Controller * @since 1.0.0 * @codeCoverageIgnore */ - public function viewDrawSingle(RequestAbstract $request, ResponseAbstract $response, $data = null) : RenderableInterface + public function viewDrawSingle(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface { $view = new View($this->app->l11nManager, $request, $response); @@ -116,7 +116,7 @@ final class BackendController extends Controller * @since 1.0.0 * @codeCoverageIgnore */ - public function viewDrawList(RequestAbstract $request, ResponseAbstract $response, $data = null) : RenderableInterface + public function viewDrawList(RequestAbstract $request, ResponseAbstract $response, mixed $data = null) : RenderableInterface { $view = new View($this->app->l11nManager, $request, $response);