mirror of
https://gitee.com/ulthon/ulthon_admin.git
synced 2026-07-01 15:32:48 +08:00
20 lines
352 B
PHP
20 lines
352 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use think\migration\Service;
|
|
|
|
$service_default = [
|
|
0 => 'think\\captcha\\CaptchaService',
|
|
1 => 'think\\app\\Service',
|
|
2 => Service::class,
|
|
];
|
|
|
|
$service_common = include_once __DIR__ . '/common/app/service.php';
|
|
|
|
$service = array_merge($service_default, $service_common);
|
|
|
|
ksort($service);
|
|
|
|
return $service;
|