php cs fixer

This commit is contained in:
Dennis Eichhorn 2019-04-27 12:05:33 +02:00
parent ac98ceb79b
commit 43c09d73ff
11 changed files with 33 additions and 86 deletions

View File

@ -1,4 +1,4 @@
<?php <?php declare(strict_types=1);
use Modules\Surveys\Controller\BackendController; use Modules\Surveys\Controller\BackendController;
use Modules\Surveys\Models\PermissionState; use Modules\Surveys\Models\PermissionState;

View File

@ -60,16 +60,12 @@ class Answer
return self::$instances[$id]; return self::$instances[$id];
} }
/**
*
*/
public function init($id) : void public function init($id) : void
{ {
} }
/**
*
*/
public function __clone() public function __clone()
{ {
} }
@ -99,37 +95,27 @@ class Answer
$this->description = $desc; $this->description = $desc;
} }
/**
*
*/
public function delete() : void public function delete() : void
{ {
} }
/**
*
*/
public function create() : void public function create() : void
{ {
} }
/**
*
*/
public function update() : void public function update() : void
{ {
} }
/**
*
*/
public function serialize() : void public function serialize() : void
{ {
} }
/**
*
*/
public function unserialize($data) : void public function unserialize($data) : void
{ {
} }

View File

@ -60,16 +60,12 @@ class Question
return self::$instances[$id]; return self::$instances[$id];
} }
/**
*
*/
public function init($id) : void public function init($id) : void
{ {
} }
/**
*
*/
public function __clone() public function __clone()
{ {
} }
@ -99,37 +95,27 @@ class Question
$this->description = $desc; $this->description = $desc;
} }
/**
*
*/
public function delete() : void public function delete() : void
{ {
} }
/**
*
*/
public function create() : void public function create() : void
{ {
} }
/**
*
*/
public function update() : void public function update() : void
{ {
} }
/**
*
*/
public function serialize() : void public function serialize() : void
{ {
} }
/**
*
*/
public function unserialize($data) : void public function unserialize($data) : void
{ {
} }

View File

@ -85,37 +85,27 @@ class Section
$this->description = $desc; $this->description = $desc;
} }
/**
*
*/
public function delete() : void public function delete() : void
{ {
} }
/**
*
*/
public function create() : void public function create() : void
{ {
} }
/**
*
*/
public function update() : void public function update() : void
{ {
} }
/**
*
*/
public function serialize() : void public function serialize() : void
{ {
} }
/**
*
*/
public function unserialize($data) : void public function unserialize($data) : void
{ {
} }

View File

@ -76,16 +76,12 @@ class Survey
return self::$instances[$id]; return self::$instances[$id];
} }
/**
*
*/
public function init($id) : void public function init($id) : void
{ {
} }
/**
*
*/
public function __clone() public function __clone()
{ {
} }
@ -135,37 +131,27 @@ class Survey
$this->creator = $creator; $this->creator = $creator;
} }
/**
*
*/
public function delete() : void public function delete() : void
{ {
} }
/**
*
*/
public function create() : void public function create() : void
{ {
} }
/**
*
*/
public function update() : void public function update() : void
{ {
} }
/**
*
*/
public function serialize() : void public function serialize() : void
{ {
} }
/**
*
*/
public function unserialize($data) : void public function unserialize($data) : void
{ {
} }

View File

@ -1,4 +1,4 @@
<?php <?php declare(strict_types=1);
/** /**
* Orange Management * Orange Management
* *

View File

@ -1,4 +1,4 @@
<?php <?php declare(strict_types=1);
/** /**
* Orange Management * Orange Management
* *

View File

@ -1,4 +1,4 @@
<?php <?php declare(strict_types=1);
/** /**
* Orange Management * Orange Management
* *

View File

@ -1,4 +1,4 @@
<?php <?php declare(strict_types=1);
/** /**
* Orange Management * Orange Management
* *

View File

@ -1,4 +1,4 @@
<?php <?php declare(strict_types=1);
/** /**
* Orange Management * Orange Management
* *

View File

@ -1,4 +1,4 @@
<?php <?php declare(strict_types=1);
/** /**
* Orange Management * Orange Management
* *
@ -11,4 +11,3 @@
* @link http://website.orange-management.de * @link http://website.orange-management.de
*/ */
echo $this->getData('nav')->render(); echo $this->getData('nav')->render();