diff --git a/Admin/Install/Navigation.php b/Admin/Install/Navigation.php index 8a2dab1..68c456c 100644 --- a/Admin/Install/Navigation.php +++ b/Admin/Install/Navigation.php @@ -36,7 +36,7 @@ class Navigation * * @since 1.0.0 */ - public static function install(string $path = null, DatabasePool $dbPool = null) /* : void */ + public static function install(string $path = null, DatabasePool $dbPool = null) : void { $navData = json_decode(file_get_contents(__DIR__ . '/Navigation.install.json'), true); diff --git a/Models/Category.php b/Models/Category.php index 150657b..39bc91f 100644 --- a/Models/Category.php +++ b/Models/Category.php @@ -52,7 +52,7 @@ class Category return $this->parent; } - public function setParent($parent) /* : void */ + public function setParent($parent) : void { $this->parent = $parent; } @@ -62,12 +62,12 @@ class Category return $this->responsible; } - public function setResponsible($responsible) /* : void */ + public function setResponsible($responsible) : void { $this->responsible = $responsible; } - public function setDeputy($deputy) /* : void */ + public function setDeputy($deputy) : void { $this->deputy = $deputy; } @@ -97,7 +97,7 @@ class Category return $this->descriptionRaw; } - public function setDescriptionRaw(string $description) /* : void */ + public function setDescriptionRaw(string $description) : void { $this->descriptionRaw = $description; } diff --git a/Models/Cause.php b/Models/Cause.php index 9c3f50f..468fb2d 100644 --- a/Models/Cause.php +++ b/Models/Cause.php @@ -49,7 +49,7 @@ class Cause return $this->id; } - public function setRisk($risk) /* : void */ + public function setRisk($risk) : void { $this->risk = $risk; } @@ -64,7 +64,7 @@ class Cause return $this->category; } - public function setCategory($category) /* : void */ + public function setCategory($category) : void { $this->category = $category; } @@ -74,7 +74,7 @@ class Cause return $this->probability; } - public function setProbability(float $probability) /* : void */ + public function setProbability(float $probability) : void { $this->probability = $probability; } @@ -84,7 +84,7 @@ class Cause return $this->department; } - public function setDepartment($department) /* : void */ + public function setDepartment($department) : void { $this->department = $department; } @@ -109,7 +109,7 @@ class Cause return $this->descriptionRaw; } - public function setDescriptionRaw(string $description) /* : void */ + public function setDescriptionRaw(string $description) : void { $this->descriptionRaw = $description; } diff --git a/Models/Department.php b/Models/Department.php index e260801..761b9db 100644 --- a/Models/Department.php +++ b/Models/Department.php @@ -58,7 +58,7 @@ class Department return $this->responsible; } - public function setResponsible($responsible) /* : void */ + public function setResponsible($responsible) : void { $this->responsible = $responsible; } @@ -68,7 +68,7 @@ class Department return $this->deputy; } - public function setDeputy($deputy) /* : void */ + public function setDeputy($deputy) : void { $this->deputy = $deputy; } diff --git a/Models/Process.php b/Models/Process.php index b4e5c4b..de7c62b 100644 --- a/Models/Process.php +++ b/Models/Process.php @@ -69,7 +69,7 @@ class Process return $this->descriptionRaw; } - public function setDescriptionRaw(string $description) /* : void */ + public function setDescriptionRaw(string $description) : void { $this->descriptionRaw = $description; } @@ -99,7 +99,7 @@ class Process return $this->responsible; } - public function setResponsible($responsible) /* : void */ + public function setResponsible($responsible) : void { $this->responsible = $responsible; } @@ -109,7 +109,7 @@ class Process return $this->deputy; } - public function setDeputy($deputy) /* : void */ + public function setDeputy($deputy) : void { $this->deputy = $deputy; } diff --git a/Models/Project.php b/Models/Project.php index aca0bbc..450070a 100644 --- a/Models/Project.php +++ b/Models/Project.php @@ -56,7 +56,7 @@ class Project return $this->responsible; } - public function setResponsible($responsible) /* : void */ + public function setResponsible($responsible) : void { $this->responsible = $responsible; } @@ -66,7 +66,7 @@ class Project return $this->deputy; } - public function setDeputy($deputy) /* : void */ + public function setDeputy($deputy) : void { $this->deputy = $deputy; } diff --git a/Models/Risk.php b/Models/Risk.php index b382b9d..4a211ba 100644 --- a/Models/Risk.php +++ b/Models/Risk.php @@ -65,7 +65,7 @@ class Risk return $this->id; } - public function addCause($cause) /* : void */ + public function addCause($cause) : void { $this->causes[] = $cause; } @@ -90,12 +90,12 @@ class Risk return $this->media; } - public function addMedia($media) /* : void */ + public function addMedia($media) : void { $this->media[] = $media; } - public function addRiskObject($object) /* : void */ + public function addRiskObject($object) : void { $this->riskObjects[] = $object; } @@ -105,7 +105,7 @@ class Risk return $this->riskObjects; } - public function addHistory($history) /* : void */ + public function addHistory($history) : void { $this->histScore[] = $history; } @@ -120,7 +120,7 @@ class Risk return $this->name; } - public function setName(string $name) /* : void */ + public function setName(string $name) : void { $this->name = $name; } @@ -130,7 +130,7 @@ class Risk return $this->description; } - public function setDescriptionRaw(string $description) /* : void */ + public function setDescriptionRaw(string $description) : void { $this->descriptionRaw = $description; } @@ -145,7 +145,7 @@ class Risk return $this->unit; } - public function setUnit($unit) /* : void */ + public function setUnit($unit) : void { $this->unit = $unit; } @@ -155,7 +155,7 @@ class Risk return $this->department; } - public function setDepartment($department) /* : void */ + public function setDepartment($department) : void { $this->department = $department; } @@ -165,7 +165,7 @@ class Risk return $this->category; } - public function setCategory($category) /* : void */ + public function setCategory($category) : void { $this->category = $category; } @@ -175,7 +175,7 @@ class Risk return $this->project; } - public function setProject($project) /* : void */ + public function setProject($project) : void { $this->project = $project; } @@ -185,7 +185,7 @@ class Risk return $this->process; } - public function setProcess($process) /* : void */ + public function setProcess($process) : void { $this->process = $process; } @@ -195,7 +195,7 @@ class Risk return $this->responsible; } - public function setResponsible($responsible) /* : void */ + public function setResponsible($responsible) : void { $this->responsible = $responsible; } @@ -205,7 +205,7 @@ class Risk return $this->deputy; } - public function setDeputy($deputy) /* : void */ + public function setDeputy($deputy) : void { $this->deputy = $deputy; } diff --git a/Models/RiskObject.php b/Models/RiskObject.php index fece786..7ab56f4 100644 --- a/Models/RiskObject.php +++ b/Models/RiskObject.php @@ -48,7 +48,7 @@ class RiskObject return $this->risk; } - public function setRisk($risk) /* : void */ + public function setRisk($risk) : void { $this->risk = $risk; } @@ -58,7 +58,7 @@ class RiskObject return $this->title; } - public function setTitle(string $title) /* : void */ + public function setTitle(string $title) : void { $this->title = $title; } @@ -73,7 +73,7 @@ class RiskObject return $this->descriptionRaw; } - public function setDescriptionRaw(string $description) /* : void */ + public function setDescriptionRaw(string $description) : void { $this->descriptionRaw = $description; } diff --git a/Models/Solution.php b/Models/Solution.php index 4fa6a7d..4b9f314 100644 --- a/Models/Solution.php +++ b/Models/Solution.php @@ -47,7 +47,7 @@ class Solution return $this->id; } - public function setRisk($risk) /* : void */ + public function setRisk($risk) : void { $this->risk = $risk; } @@ -57,7 +57,7 @@ class Solution return $this->risk; } - public function setCause($cause) /* : void */ + public function setCause($cause) : void { $this->cause = $cause; } @@ -72,7 +72,7 @@ class Solution return $this->probability; } - public function setProbability(float $probability) /* : void */ + public function setProbability(float $probability) : void { $this->probability = $probability; } @@ -97,7 +97,7 @@ class Solution return $this->descriptionRaw; } - public function setDescriptionRaw(string $description) /* : void */ + public function setDescriptionRaw(string $description) : void { $this->descriptionRaw = $description; }