1 | <?php |
||
7 | abstract class DriverAbstract implements DriverInterface |
||
8 | { |
||
9 | const PACKAGE = 'LNC-Gammu'; |
||
10 | |||
11 | const VERSION = '0.0.2'; |
||
12 | |||
13 | public $destination; |
||
14 | |||
15 | public $content; |
||
16 | |||
17 | public function send($phoneNumber, $content, $sender = null) |
||
20 | |||
21 | public function getSignature() |
||
25 | |||
26 | public function setDestination($phoneNumber) |
||
34 | |||
35 | public function getDestination() |
||
38 | |||
39 | public function setContent($content) |
||
47 | |||
48 | public function getContent() |
||
51 | } |
||
52 |