mirror of
http://124.126.16.154:8888/singularity/HyperfDevelopmentKitCore.git
synced 2026-01-15 07:15:06 +08:00
27 lines
467 B
PHP
27 lines
467 B
PHP
<?php
|
|
/**
|
|
* SingletonInterface.php@Core
|
|
*
|
|
* @author 李东云 <Dongyun.Li@LuxCreo.Ai>
|
|
* Powered by PhpStorm
|
|
* Created on 2023/8/30
|
|
*/
|
|
|
|
namespace Singularity\HDK\Core\Service;
|
|
|
|
use Dont\DontCallStatic;
|
|
use Dont\DontClone;
|
|
|
|
/**
|
|
* Singularity\HDK\Core\Service\SingletonInterface@Core
|
|
*
|
|
* @author 李东云 <Dongyun.Li@LuxCreo.Ai>
|
|
* Powered by PhpStorm
|
|
* Created on 2023/8/30
|
|
*/
|
|
abstract class AbstractSingleton
|
|
{
|
|
use DontCallStatic;
|
|
use DontClone;
|
|
}
|