| 1234567891011121314151617181920212223242526 |
- <?php
- namespace App\Services;
- class BaseService
- {
- protected static $instance;
- protected function __construct()
- {
- }
- public static function getInstance()
- {
- if (static::$instance instanceof static) {
- return self::$instance;
- }
- static::$instance = new static();
- return self::$instance;
- }
- protected function __clone()
- {
- }
- }
|