You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
464 B
22 lines
464 B
<?php |
|
namespace SmsGateway\Sender; |
|
|
|
use SmsGateway\SenderInterface; |
|
|
|
class GnokiiSender implements SenderInterface |
|
{ |
|
private $gnokiiPath; |
|
|
|
public function __construct($gnokiiPath) |
|
{ |
|
$this->gnokiiPath = $gnokiiPath; |
|
|
|
if (!is_executable($this->gnokiiPath)) { |
|
throw new \Exception('Specified Gnokii executable is not executable by me!'); |
|
} |
|
|
|
public function send($recipient, $message) |
|
{ |
|
return true; |
|
} |
|
}
|
|
|