Conditions | 1 |
Paths | 1 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 1 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
14 | 1 | public static function fromCommand(OperationCommand $command) |
|
15 | { |
||
16 | 1 | $response = $command->getResponse(); |
|
17 | |||
18 | 1 | return new self([ |
|
19 | 1 | 'status' => $response->getStatusCode(), |
|
20 | 1 | 'reason' => $response->getReasonPhrase(), |
|
21 | 1 | 'text' => $response->getBody(true), |
|
22 | 1 | ]); |
|
23 | } |
||
24 | } |
||
25 |