12345678910111213141516171819202122 |
- <?php
- /**
- * Created by PhpStorm.
- * User: Bear
- * Date: 2018/11/9
- * Time: 上午10:28
- */
- namespace app\main\InternalInterface;
- /**
- * 单例接口文件
- * Interface BaseService
- * @package cps\src\Service
- */
- interface SingletonService
- {
- /**
- * @return $this
- */
- public static function instance();
- }
|