php cs fixer

This commit is contained in:
Dennis Eichhorn 2018-12-28 19:13:17 +01:00
parent 4c73366a39
commit 2c84282e36
2 changed files with 4 additions and 4 deletions

View File

@ -388,7 +388,7 @@ class Task implements \JsonSerializable
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setDescriptionRaw(string $description) public function setDescriptionRaw(string $description) : void
{ {
$this->descriptionRaw = $description; $this->descriptionRaw = $description;
} }
@ -614,7 +614,7 @@ class Task implements \JsonSerializable
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setType(int $type = TaskType::SINGLE) public function setType(int $type = TaskType::SINGLE) : void
{ {
$this->type = $type; $this->type = $type;
} }

View File

@ -156,7 +156,7 @@ class TaskElement implements \JsonSerializable
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setCreatedBy($creator) public function setCreatedBy($creator) : void
{ {
$this->createdBy = $creator; $this->createdBy = $creator;
@ -391,7 +391,7 @@ class TaskElement implements \JsonSerializable
* *
* @since 1.0.0 * @since 1.0.0
*/ */
public function setTask(int $task) public function setTask(int $task) : void
{ {
$this->task = $task; $this->task = $task;
} }