Remove namespace from scalars

This commit is contained in:
Dennis Eichhorn 2016-01-23 10:17:21 +01:00
parent 43508c133f
commit e42c14e709
5 changed files with 21 additions and 21 deletions

View File

@ -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 = 'Surveys';
@ -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 = [
@ -170,7 +170,7 @@ class Controller extends ModuleAbstract implements WebInterface
* @since 1.0.0
* @author Dennis Eichhorn <d.eichhorn@oms.com>
*/
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);

View File

@ -34,7 +34,7 @@ class Answer implements Multition
/**
* ID.
*
* @var \int
* @var int
* @since 1.0.0
*/
private $id = '';
@ -42,7 +42,7 @@ class Answer implements Multition
/**
* Name.
*
* @var \string
* @var string
* @since 1.0.0
*/
private $name = '';
@ -50,7 +50,7 @@ class Answer implements Multition
/**
* Description.
*
* @var \string
* @var string
* @since 1.0.0
*/
private $description = '';

View File

@ -34,7 +34,7 @@ class Question implements Multition
/**
* ID.
*
* @var \int
* @var int
* @since 1.0.0
*/
private $id = '';
@ -42,7 +42,7 @@ class Question implements Multition
/**
* Name.
*
* @var \string
* @var string
* @since 1.0.0
*/
private $name = '';
@ -50,7 +50,7 @@ class Question implements Multition
/**
* Description.
*
* @var \string
* @var string
* @since 1.0.0
*/
private $description = '';

View File

@ -34,7 +34,7 @@ class Section implements Multition
/**
* ID.
*
* @var \int
* @var int
* @since 1.0.0
*/
private $id = '';
@ -42,7 +42,7 @@ class Section implements Multition
/**
* Name.
*
* @var \string
* @var string
* @since 1.0.0
*/
private $name = '';
@ -50,7 +50,7 @@ class Section implements Multition
/**
* Description.
*
* @var \string
* @var string
* @since 1.0.0
*/
private $description = '';
@ -135,7 +135,7 @@ class Section implements Multition
*
* This usually happens from DB or cache
*
* @param \int $id Object ID
* @param int $id Object ID
*
* @return void
*

View File

@ -34,7 +34,7 @@ class Survey implements Multition
/**
* ID.
*
* @var \int
* @var int
* @since 1.0.0
*/
private $id = '';
@ -42,7 +42,7 @@ class Survey implements Multition
/**
* Name.
*
* @var \string
* @var string
* @since 1.0.0
*/
private $name = '';
@ -50,7 +50,7 @@ class Survey implements Multition
/**
* Description.
*
* @var \string
* @var string
* @since 1.0.0
*/
private $description = '';
@ -66,7 +66,7 @@ class Survey implements Multition
/**
* Creator.
*
* @var \int
* @var int
* @since 1.0.0
*/
private $creator = null;