From 81eb46a71f1530dc3ea5d94aba8ac105af39b59f Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Fri, 28 Dec 2018 19:13:17 +0100 Subject: [PATCH] php cs fixer --- Models/Answer.php | 30 +++++++++++++++--------------- Models/Question.php | 30 +++++++++++++++--------------- Models/Section.php | 26 +++++++++++++------------- Models/Survey.php | 34 +++++++++++++++++----------------- 4 files changed, 60 insertions(+), 60 deletions(-) diff --git a/Models/Answer.php b/Models/Answer.php index 1b04645..55e3536 100644 --- a/Models/Answer.php +++ b/Models/Answer.php @@ -65,14 +65,14 @@ class Answer } /** - * {@inheritdoc} + * */ - public function init($id) + public function init($id) : void { } /** - * {@inheritdoc} + * */ public function __clone() { @@ -88,7 +88,7 @@ class Answer return $this->name; } - public function setName($name) + public function setName($name) : void { $this->name = $name; } @@ -98,43 +98,43 @@ class Answer return $this->description; } - public function setDescription($desc) + public function setDescription($desc) : void { $this->description = $desc; } /** - * {@inheritdoc} + * */ - public function delete() + public function delete() : void { } /** - * {@inheritdoc} + * */ - public function create() + public function create() : void { } /** - * {@inheritdoc} + * */ - public function update() + public function update() : void { } /** - * {@inheritdoc} + * */ - public function serialize() + public function serialize() : void { } /** - * {@inheritdoc} + * */ - public function unserialize($data) + public function unserialize($data) : void { } } diff --git a/Models/Question.php b/Models/Question.php index 762d99b..6e89c90 100644 --- a/Models/Question.php +++ b/Models/Question.php @@ -65,14 +65,14 @@ class Question } /** - * {@inheritdoc} + * */ - public function init($id) + public function init($id) : void { } /** - * {@inheritdoc} + * */ public function __clone() { @@ -88,7 +88,7 @@ class Question return $this->name; } - public function setName($name) + public function setName($name) : void { $this->name = $name; } @@ -98,43 +98,43 @@ class Question return $this->description; } - public function setDescription($desc) + public function setDescription($desc) : void { $this->description = $desc; } /** - * {@inheritdoc} + * */ - public function delete() + public function delete() : void { } /** - * {@inheritdoc} + * */ - public function create() + public function create() : void { } /** - * {@inheritdoc} + * */ - public function update() + public function update() : void { } /** - * {@inheritdoc} + * */ - public function serialize() + public function serialize() : void { } /** - * {@inheritdoc} + * */ - public function unserialize($data) + public function unserialize($data) : void { } } diff --git a/Models/Section.php b/Models/Section.php index 0a41b06..a2ec1b2 100644 --- a/Models/Section.php +++ b/Models/Section.php @@ -74,7 +74,7 @@ class Section return $this->name; } - public function setName($name) + public function setName($name) : void { $this->name = $name; } @@ -84,43 +84,43 @@ class Section return $this->description; } - public function setDescription($desc) + public function setDescription($desc) : void { $this->description = $desc; } /** - * {@inheritdoc} + * */ - public function delete() + public function delete() : void { } /** - * {@inheritdoc} + * */ - public function create() + public function create() : void { } /** - * {@inheritdoc} + * */ - public function update() + public function update() : void { } /** - * {@inheritdoc} + * */ - public function serialize() + public function serialize() : void { } /** - * {@inheritdoc} + * */ - public function unserialize($data) + public function unserialize($data) : void { } @@ -135,7 +135,7 @@ class Section * * @since 1.0.0 */ - public function init($id) + public function init($id) : void { // TODO: Implement init() method. } diff --git a/Models/Survey.php b/Models/Survey.php index 0691a9a..0b0d1ce 100644 --- a/Models/Survey.php +++ b/Models/Survey.php @@ -81,14 +81,14 @@ class Survey } /** - * {@inheritdoc} + * */ - public function init($id) + public function init($id) : void { } /** - * {@inheritdoc} + * */ public function __clone() { @@ -104,7 +104,7 @@ class Survey return $this->name; } - public function setName($name) + public function setName($name) : void { $this->name = $name; } @@ -114,7 +114,7 @@ class Survey return $this->description; } - public function setDescription($desc) + public function setDescription($desc) : void { $this->description = $desc; } @@ -124,7 +124,7 @@ class Survey return $this->created; } - public function setCreated($created) + public function setCreated($created) : void { $this->created = $created; } @@ -134,43 +134,43 @@ class Survey return $this->creator; } - public function setCreator($creator) + public function setCreator($creator) : void { $this->creator = $creator; } /** - * {@inheritdoc} + * */ - public function delete() + public function delete() : void { } /** - * {@inheritdoc} + * */ - public function create() + public function create() : void { } /** - * {@inheritdoc} + * */ - public function update() + public function update() : void { } /** - * {@inheritdoc} + * */ - public function serialize() + public function serialize() : void { } /** - * {@inheritdoc} + * */ - public function unserialize($data) + public function unserialize($data) : void { } }