| 1 | <?php |
||
| 13 | class PreHandleMessage extends Event |
||
| 14 | { |
||
| 15 | const NAME = 'happyr.mq2php.pre_handle_message'; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var Envelope |
||
| 19 | */ |
||
| 20 | private $envelope; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param Envelope $envelope |
||
| 24 | */ |
||
| 25 | public function __construct(Envelope $envelope) |
||
| 29 | |||
| 30 | /** |
||
| 31 | * @return Envelope |
||
| 32 | */ |
||
| 33 | public function getEnvelope() |
||
| 37 | } |
||
| 38 |