mirror of
https://github.com/Karaka-Management/oms-RiskManagement.git
synced 2026-01-14 12:48:40 +00:00
php cs fixer
This commit is contained in:
parent
eda267b1e2
commit
b11ea329b5
|
|
@ -82,7 +82,7 @@ class Category
|
|||
return $this->title;
|
||||
}
|
||||
|
||||
public function setTitle(string $title)
|
||||
public function setTitle(string $title) : void
|
||||
{
|
||||
$this->title = $title;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -94,7 +94,7 @@ class Cause
|
|||
return $this->title;
|
||||
}
|
||||
|
||||
public function setTitle(string $title)
|
||||
public function setTitle(string $title) : void
|
||||
{
|
||||
$this->title = $title;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -48,7 +48,7 @@ class Department
|
|||
return $this->department ?? new NullOrgDepartment();
|
||||
}
|
||||
|
||||
public function setDepartment($department)
|
||||
public function setDepartment($department) : void
|
||||
{
|
||||
$this->department = $department;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -46,7 +46,7 @@ class Project
|
|||
return $this->project;
|
||||
}
|
||||
|
||||
public function setProject(string $project)
|
||||
public function setProject(string $project) : void
|
||||
{
|
||||
$this->project = $project;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -78,7 +78,7 @@ class Risk
|
|||
return $this->causes;
|
||||
}
|
||||
|
||||
public function addSolution($solution) /* : solution */
|
||||
public function addSolution($solution) : void /* : solution */
|
||||
{
|
||||
$this->solutions[] = $solution;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -82,7 +82,7 @@ class Solution
|
|||
return $this->title;
|
||||
}
|
||||
|
||||
public function setTitle(string $title)
|
||||
public function setTitle(string $title) : void
|
||||
{
|
||||
$this->title = $title;
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user