public function WordStream::logout in WordStream Keyword Tools 7
File
- ./
class.wordstream.inc, line 41
Class
- WordStream
- A class to aid with accessing the Wordstream API
Code
public function logout() {
$response = $this
->callAPI('authentication/logout', array(
'session' => $this->session,
));
return $response->code == 'OK';
}