chengkun
2025-09-15 0cc7f61de2b106c9664033fc27d6426d072ea019
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
<?php
// +----------------------------------------------------------------------
// | ThinkPHP [ WE CAN DO IT JUST THINK ]
// +----------------------------------------------------------------------
// | Copyright (c) 2006~2025 http://thinkphp.cn All rights reserved.
// +----------------------------------------------------------------------
// | Licensed ( http://www.apache.org/licenses/LICENSE-2.0 )
// +----------------------------------------------------------------------
// | Author: yunwuxin <448901948@qq.com>
// +----------------------------------------------------------------------
declare(strict_types=1);
 
namespace think\initializer;
 
use think\App;
use think\service\ModelService;
use think\service\PaginatorService;
use think\service\ValidateService;
 
/**
 * 注册系统服务
 */
class RegisterService
{
 
    protected $services = [
        PaginatorService::class,
        ValidateService::class,
        ModelService::class,
    ];
 
    public function init(App $app)
    {
        $file = $app->getRootPath() . 'vendor/services.php';
 
        $services = $this->services;
 
        if (is_file($file)) {
            $services = array_merge($services, include $file);
        }
 
        foreach ($services as $service) {
            if (class_exists($service)) {
                $app->register($service);
            }
        }
    }
}