Cartalyst\Sentinel\Sessions\CISession::__construct PHP 메소드

__construct() 공개 메소드

Create a new CodeIgniter Session driver.
public __construct ( CI_Session $store, string $key = null ) : void
$store CI_Session
$key string
리턴 void
    public function __construct(Session $store, $key = null)
    {
        $this->store = $store;
        if (isset($key)) {
            $this->key = $key;
        }
    }