| 1 | <?php |
||
| 18 | abstract class MessageActionHandler implements ActionHandlerInterface |
||
| 19 | { |
||
| 20 | /** |
||
| 21 | * @var Server |
||
| 22 | */ |
||
| 23 | protected $server; |
||
| 24 | |||
| 25 | /** |
||
| 26 | * @var ConnectionInterface |
||
| 27 | */ |
||
| 28 | protected $connection; |
||
| 29 | |||
| 30 | public function __construct(Server $server, ConnectionInterface $connection) |
||
| 35 | |||
| 36 | /** |
||
| 37 | * Gets the event dispatcher. |
||
| 38 | * |
||
| 39 | * @return Dispatcher |
||
| 40 | */ |
||
| 41 | public function getEventDispatcher() |
||
| 45 | } |