| 1 | <?php |
||
| 5 | class TransportReceiver |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * @var MessagePusherInterface |
||
| 9 | */ |
||
| 10 | private $messagePusher; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var PushSettings |
||
| 14 | */ |
||
| 15 | private $pushSettings; |
||
| 16 | |||
| 17 | /** |
||
| 18 | * @var PushPipe |
||
| 19 | */ |
||
| 20 | private $pushPipe; |
||
| 21 | |||
| 22 | /** |
||
| 23 | * @param MessagePusherInterface $messagePusher |
||
| 24 | * @param PushSettings $pushSettings |
||
| 25 | * @param PushPipe $pushPipe |
||
| 26 | */ |
||
| 27 | 1 | public function __construct( |
|
| 36 | |||
| 37 | 1 | public function start() |
|
| 42 | } |
||
| 43 |