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;
}
public function setTitle(string $title)
public function setTitle(string $title) : void
{
$this->title = $title;
}

View File

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

View File

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

View File

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

View File

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

View File

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

View File

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