| 1 | <?php |
||
| 5 | class Messenger |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var Connection |
||
| 9 | */ |
||
| 10 | protected $connection; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @param Connection $connection |
||
| 14 | */ |
||
| 15 | public function __construct(Connection $connection) |
||
| 19 | |||
| 20 | /** |
||
| 21 | * Send text to the server. |
||
| 22 | * |
||
| 23 | * @param $messageText |
||
| 24 | * |
||
| 25 | * @param callable $callable |
||
| 26 | * |
||
| 27 | * @return string |
||
| 28 | */ |
||
| 29 | public function send($messageText, callable $callable = null) |
||
| 44 | } |
||
| 45 |