测试
This commit is contained in:
25
app/Services/Base/BaseService.php
Normal file
25
app/Services/Base/BaseService.php
Normal file
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
namespace App\Services\Base;
|
||||
|
||||
class BaseService
|
||||
{
|
||||
protected $userId;
|
||||
protected static $instance;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$token = request()->header('token');
|
||||
$this->userId = $token;
|
||||
}
|
||||
|
||||
// 单例
|
||||
|
||||
public static function getInstance()
|
||||
{
|
||||
if (!self::$instance instanceof self) {
|
||||
self::$instance = new self();
|
||||
}
|
||||
return self::$instance;
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user