1
0
Fork 0
smsgateway/src/SmsGateway/Sender/GnokiiSender.php

23 lines
464 B
PHP

<?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;
}
}