fix:修复类型错误

This commit is contained in:
Jack Jaguar
2024-01-08 10:20:20 +08:00
parent 2e81eb42d3
commit 07eaa5c274
14 changed files with 16 additions and 15 deletions

View File

@@ -12,7 +12,7 @@ class ConfigSeed extends Seeder
* More information on writing seeders is available here:
* http://docs.phinx.org/en/latest/seeding.html
*/
public function run()
public function run(): void
{
$data = [
[

View File

@@ -21,7 +21,7 @@ class SystemMenusSeed extends Seeder
* More information on writing seeders is available here:
* http://docs.phinx.org/en/latest/seeding.html
*/
public function run()
public function run(): void
{
\catcher\Utils::importTreeData($this->getPermissions(), 'permissions', 'parent_id');
}