This commit is contained in:
Default
2025-03-11 23:47:39 +08:00
commit 105ffe11c7
47 changed files with 1032 additions and 0 deletions

2
code/app/home/common.php Normal file
View File

@@ -0,0 +1,2 @@
<?php
// 这是系统自动生成的公共文件

View File

@@ -0,0 +1,12 @@
<?php
declare (strict_types = 1);
namespace app\home\controller;
class Index
{
public function index()
{
return '您好!这是一个[home]示例应用';
}
}

5
code/app/home/event.php Normal file
View File

@@ -0,0 +1,5 @@
<?php
// 这是系统自动生成的event定义文件
return [
];

View File

@@ -0,0 +1,5 @@
<?php
// 这是系统自动生成的middleware定义文件
return [
];