20 lines
312 B
PHP
20 lines
312 B
PHP
<?php
|
|
/**
|
|
* This service file is part of item.
|
|
*
|
|
* @author ctexthuang
|
|
* @contact ctexthuang@qq.com
|
|
* @web_site https://ctexthuang.com
|
|
*/
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace App\Service;
|
|
|
|
abstract class BaseService
|
|
{
|
|
/**
|
|
* 主体函数抽象类
|
|
*/
|
|
abstract public function handle();
|
|
} |