diff --git a/Controller.php b/Controller.php index bdc88bb..704e61d 100644 --- a/Controller.php +++ b/Controller.php @@ -43,7 +43,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module path. * - * @var \string + * @var string * @since 1.0.0 */ const MODULE_PATH = __DIR__; @@ -51,7 +51,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module version. * - * @var \string + * @var string * @since 1.0.0 */ const MODULE_VERSION = '1.0.0'; @@ -59,7 +59,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Module name. * - * @var \string + * @var string * @since 1.0.0 */ const MODULE_NAME = 'Support'; @@ -67,7 +67,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Localization files. * - * @var \string + * @var string * @since 1.0.0 */ protected static $localization = [ @@ -77,7 +77,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Providing. * - * @var \string + * @var string * @since 1.0.0 */ protected static $providing = []; @@ -85,7 +85,7 @@ class Controller extends ModuleAbstract implements WebInterface /** * Dependencies. * - * @var \string + * @var string * @since 1.0.0 */ protected static $dependencies = [ @@ -211,7 +211,7 @@ class Controller extends ModuleAbstract implements WebInterface * @since 1.0.0 * @author Dennis Eichhorn */ - private function createNavigation(\int $pageId, RequestAbstract $request, ResponseAbstract $response) + private function createNavigation(int $pageId, RequestAbstract $request, ResponseAbstract $response) { $nav = Navigation::getInstance($request, $this->app->dbPool); $navView = new NavigationView($this->app, $request, $response); diff --git a/Models/Issue.php b/Models/Issue.php index f1f3af7..272299b 100644 --- a/Models/Issue.php +++ b/Models/Issue.php @@ -34,7 +34,7 @@ class Issue implements Multition /** * Name. * - * @var \string + * @var string * @since 1.0.0 */ private $name = ''; @@ -42,7 +42,7 @@ class Issue implements Multition /** * Description. * - * @var \string + * @var string * @since 1.0.0 */ private $description = ''; @@ -58,7 +58,7 @@ class Issue implements Multition /** * Creator. * - * @var \int + * @var int * @since 1.0.0 */ private $creator = null; diff --git a/Models/Message.php b/Models/Message.php index c248599..671fb0d 100644 --- a/Models/Message.php +++ b/Models/Message.php @@ -34,7 +34,7 @@ class Message implements Multition /** * Name. * - * @var \string + * @var string * @since 1.0.0 */ private $name = ''; @@ -42,7 +42,7 @@ class Message implements Multition /** * Description. * - * @var \string + * @var string * @since 1.0.0 */ private $description = ''; @@ -58,7 +58,7 @@ class Message implements Multition /** * Creator. * - * @var \int + * @var int * @since 1.0.0 */ private $creator = null; @@ -153,7 +153,7 @@ class Message implements Multition * * This usually happens from DB or cache * - * @param \int $id Object ID + * @param int $id Object ID * * @return void *