This commit is contained in:
2023-10-24 17:22:31 +08:00
parent 606b6afba1
commit 6a62facef0
+6 -6
View File
@@ -86,8 +86,8 @@ abstract class GiiBase
/** /**
* @param $module * @param $module
*/ */
public function setModule($module) public function setModule($module): void
{ {
$this->module = $module; $this->module = $module;
} }
@@ -103,8 +103,8 @@ abstract class GiiBase
/** /**
* @param InputInterface $input * @param InputInterface $input
*/ */
public function setInput(InputInterface $input) public function setInput(InputInterface $input): void
{ {
$this->input = $input; $this->input = $input;
} }
@@ -398,8 +398,8 @@ abstract class GiiBase
/** /**
* @param $db * @param $db
*/ */
public function setConnection($db) public function setConnection($db): void
{ {
$this->db = $db; $this->db = $db;
} }