yii\authclient\SessionStateStorage::remove PHP Method

remove() public method

public remove ( $key )
    public function remove($key)
    {
        if ($this->session !== null) {
            $this->session->remove($key);
        }
        return true;
    }
SessionStateStorage