28 lines
327 B
PHP
28 lines
327 B
PHP
|
<?php
|
||
|
declare (strict_types = 1);
|
||
|
|
||
|
namespace app\service;
|
||
|
|
||
|
class Test extends \think\Service
|
||
|
{
|
||
|
/**
|
||
|
* 注册服务
|
||
|
*
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function register()
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* 执行服务
|
||
|
*
|
||
|
* @return mixed
|
||
|
*/
|
||
|
public function boot()
|
||
|
{
|
||
|
//
|
||
|
}
|
||
|
}
|