php cs fixer

This commit is contained in:
Dennis Eichhorn 2018-12-28 19:13:17 +01:00
parent 23b08d8dfe
commit 81eb46a71f
4 changed files with 60 additions and 60 deletions

View File

@ -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
{
}
}

View File

@ -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
{
}
}

View File

@ -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.
}

View File

@ -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
{
}
}