12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- if (!defined('STATUSNET') && !defined('LACONICA')) { exit(1); }
- class ImReceiverQueueHandler extends QueueHandler
- {
- function __construct($plugin)
- {
- $this->plugin = $plugin;
- }
-
- function handle($data) : bool
- {
- return $this->plugin->receiveRawMessage($data);
- }
- }
|