mirror of
http://124.126.16.154:8888/singularity/HyperfDevelopmentKitCore.git
synced 2026-01-15 07:15:06 +08:00
32 lines
592 B
PHP
32 lines
592 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
/**
|
|
* AbstractFactory.php@Core
|
|
*
|
|
* @author 李东云 <Dongyun.Li@LuxCreo.Ai>
|
|
* Powered by PhpStorm
|
|
* Created on 2023/8/30
|
|
*/
|
|
|
|
namespace Singularity\HDK\Core\Service;
|
|
|
|
use Dont\DontCall;
|
|
use Dont\DontInstantiate;
|
|
use Singularity\HDK\Core\Http\RequestService;
|
|
|
|
/**
|
|
* Singularity\HDK\Core\Service\AbstractFactory@Core
|
|
*
|
|
* @author 李东云 <Dongyun.Li@LuxCreo.Ai>
|
|
* Powered by PhpStorm
|
|
* Created on 2023/8/30
|
|
*/
|
|
abstract class AbstractFactory
|
|
{
|
|
use DontInstantiate;
|
|
use DontCall;
|
|
|
|
abstract public static function make(): RequestService;
|
|
}
|