From b11ea329b5c76f75355f33eac0fce3f9b17a2db1 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/Category.php | 2 +- Models/Cause.php | 2 +- Models/Department.php | 2 +- Models/Process.php | 6 +++--- Models/Project.php | 2 +- Models/Risk.php | 2 +- Models/Solution.php | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/Models/Category.php b/Models/Category.php index d286ca8..776f3b5 100644 --- a/Models/Category.php +++ b/Models/Category.php @@ -82,7 +82,7 @@ class Category return $this->title; } - public function setTitle(string $title) + public function setTitle(string $title) : void { $this->title = $title; } diff --git a/Models/Cause.php b/Models/Cause.php index bd172c1..211fb5d 100644 --- a/Models/Cause.php +++ b/Models/Cause.php @@ -94,7 +94,7 @@ class Cause return $this->title; } - public function setTitle(string $title) + public function setTitle(string $title) : void { $this->title = $title; } diff --git a/Models/Department.php b/Models/Department.php index 594e81a..c7624f1 100644 --- a/Models/Department.php +++ b/Models/Department.php @@ -48,7 +48,7 @@ class Department return $this->department ?? new NullOrgDepartment(); } - public function setDepartment($department) + public function setDepartment($department) : void { $this->department = $department; } diff --git a/Models/Process.php b/Models/Process.php index 622e893..bf423b2 100644 --- a/Models/Process.php +++ b/Models/Process.php @@ -54,7 +54,7 @@ class Process return $this->title; } - public function setTitle(string $title) + public function setTitle(string $title) : void { $this->title = $title; } @@ -79,7 +79,7 @@ class Process return $this->unit; } - public function setUnit($unit) + public function setUnit($unit) : void { $this->unit = $unit; } @@ -89,7 +89,7 @@ class Process return $this->department; } - public function setDepartment($department) + public function setDepartment($department) : void { $this->department = $department; } diff --git a/Models/Project.php b/Models/Project.php index 1c0dd10..365eb5f 100644 --- a/Models/Project.php +++ b/Models/Project.php @@ -46,7 +46,7 @@ class Project return $this->project; } - public function setProject(string $project) + public function setProject(string $project) : void { $this->project = $project; } diff --git a/Models/Risk.php b/Models/Risk.php index 1b64572..07e769d 100644 --- a/Models/Risk.php +++ b/Models/Risk.php @@ -78,7 +78,7 @@ class Risk return $this->causes; } - public function addSolution($solution) /* : solution */ + public function addSolution($solution) : void /* : solution */ { $this->solutions[] = $solution; } diff --git a/Models/Solution.php b/Models/Solution.php index 3278357..8e22a68 100644 --- a/Models/Solution.php +++ b/Models/Solution.php @@ -82,7 +82,7 @@ class Solution return $this->title; } - public function setTitle(string $title) + public function setTitle(string $title) : void { $this->title = $title; }