Added the send command

This commit is contained in:
Gergely POLONKAI 2012-10-07 01:49:25 +02:00
parent 47086cc541
commit 0ec25679d0
1 changed files with 11 additions and 3 deletions

View File

@ -36,16 +36,24 @@ class Sender
public function login($username, $password)
{
var_dump($this->sender->login($username, $password));
if ($this->sender->login($username, $password) === true) {
$this->loggedIn = true;
}
}
public function sendMessage($recipient, $message, array $passwordLocations)
{
var_dump($this->sender->sendMessage($recipient, $message, $passwordLocations));
if (!$this->loggedIn) {
return false;
}
$this->sender->sendMessage($recipient, $message, $passwordLocations);
}
public function logout()
{
var_dump($this->sender->logout());
if (!$this->loggedIn) {
return false;
}
$this->sender->logout();
}
}