public function testRemoveToken() { $this->session->expects($this->once())->method('remove')->with('requesttoken'); $this->sessionStorage->removeToken(); }
/** * Remove the current token from the storage. */ public function removeToken() { $this->sessionStorage->removeToken(); }