开始自动更新架构

This commit is contained in:
2023-09-18 18:06:40 +08:00
parent c7426e4094
commit 01db0f9956
10 changed files with 53 additions and 7 deletions

View File

@@ -1,7 +1,14 @@
<?php
declare (strict_types=1);
return [
declare(strict_types=1);
$service_default = [
0 => 'think\\captcha\\CaptchaService',
1 => 'think\\app\\Service',
];
];
$service_common = include_once __DIR__ . '/app/common/app/service.php';
$service = array_merge($service_default, $service_common);
return ksort($service);