| Conditions | 1 |
| Paths | 1 |
| Total Lines | 14 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 10 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 1 | public function createFromPushContext(PushContext $pushContext) |
|
| 25 | { |
||
| 26 | 1 | return new TransportReceiveContext( |
|
| 27 | 1 | $pushContext->getMessageId(), |
|
| 28 | 1 | new IncomingPhysicalMessage( |
|
| 29 | 1 | $pushContext->getMessageId(), |
|
| 30 | 1 | $pushContext->getHeaders(), |
|
| 31 | 1 | $pushContext->getBody() |
|
| 32 | ), |
||
| 33 | 1 | $pushContext->getCancellationToken(), |
|
| 34 | 1 | $pushContext->getEndpointControlToken(), |
|
| 35 | 1 | new PipelineRootStageContext($this->builder) |
|
| 36 | ); |
||
| 37 | } |
||
| 38 | } |
||
| 39 |