SingletonService.php 323 B

12345678910111213141516171819202122
  1. <?php
  2. /**
  3. * Created by PhpStorm.
  4. * User: Bear
  5. * Date: 2018/11/9
  6. * Time: 上午10:28
  7. */
  8. namespace app\common\internalInterface;
  9. /**
  10. * 单例接口文件
  11. * Interface BaseService
  12. * @package cps\src\Service
  13. */
  14. interface SingletonService
  15. {
  16. /**
  17. * @return $this
  18. */
  19. public static function instance();
  20. }