php cs fixer

This commit is contained in:
Dennis Eichhorn 2018-12-28 19:13:17 +01:00
parent eda267b1e2
commit b11ea329b5
7 changed files with 9 additions and 9 deletions

View File

@ -82,7 +82,7 @@ class Category
return $this->title; return $this->title;
} }
public function setTitle(string $title) public function setTitle(string $title) : void
{ {
$this->title = $title; $this->title = $title;
} }

View File

@ -94,7 +94,7 @@ class Cause
return $this->title; return $this->title;
} }
public function setTitle(string $title) public function setTitle(string $title) : void
{ {
$this->title = $title; $this->title = $title;
} }

View File

@ -48,7 +48,7 @@ class Department
return $this->department ?? new NullOrgDepartment(); return $this->department ?? new NullOrgDepartment();
} }
public function setDepartment($department) public function setDepartment($department) : void
{ {
$this->department = $department; $this->department = $department;
} }

View File

@ -54,7 +54,7 @@ class Process
return $this->title; return $this->title;
} }
public function setTitle(string $title) public function setTitle(string $title) : void
{ {
$this->title = $title; $this->title = $title;
} }
@ -79,7 +79,7 @@ class Process
return $this->unit; return $this->unit;
} }
public function setUnit($unit) public function setUnit($unit) : void
{ {
$this->unit = $unit; $this->unit = $unit;
} }
@ -89,7 +89,7 @@ class Process
return $this->department; return $this->department;
} }
public function setDepartment($department) public function setDepartment($department) : void
{ {
$this->department = $department; $this->department = $department;
} }

View File

@ -46,7 +46,7 @@ class Project
return $this->project; return $this->project;
} }
public function setProject(string $project) public function setProject(string $project) : void
{ {
$this->project = $project; $this->project = $project;
} }

View File

@ -78,7 +78,7 @@ class Risk
return $this->causes; return $this->causes;
} }
public function addSolution($solution) /* : solution */ public function addSolution($solution) : void /* : solution */
{ {
$this->solutions[] = $solution; $this->solutions[] = $solution;
} }

View File

@ -82,7 +82,7 @@ class Solution
return $this->title; return $this->title;
} }
public function setTitle(string $title) public function setTitle(string $title) : void
{ {
$this->title = $title; $this->title = $title;
} }