/**
* Destroys the given session ID.
*
* @param string $sessionId The session ID to destroy.
*
* @return boolean
*
* @since 4.0.0
*/
public function destroySession(string $sessionId) : bool
{
return $this->sessionHandler->destroy($sessionId);
}