Files
framework/src/think/console/command/make/stubs/service.stub
2026-01-06 12:44:28 +08:00

28 lines
338 B
Plaintext

<?php
declare (strict_types = 1);
namespace {%namespace%};
class {%className%} extends \think\Service
{
/**
* 注册服务
*
* @return mixed
*/
public function register()
{
//
}
/**
* 执行服务
*
* @return mixed
*/
public function boot()
{
//
}
}