mirror of
https://gitee.com/fastadminnet/framework.git
synced 2026-07-06 15:02:47 +08:00
PSR规范调整
This commit is contained in:
@@ -10,13 +10,16 @@
|
||||
// +----------------------------------------------------------------------
|
||||
|
||||
namespace think\session\driver;
|
||||
|
||||
use SessionHandler;
|
||||
|
||||
class Driver extends SessionHandler {
|
||||
protected $config = [];
|
||||
class Driver extends SessionHandler
|
||||
{
|
||||
protected $config = [];
|
||||
|
||||
public function __construct($config=[]){
|
||||
$this->config = array_merge($this->config,$config);
|
||||
public function __construct($config = [])
|
||||
{
|
||||
$this->config = array_merge($this->config, $config);
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user