Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
45 | public static function getFromString(string $string) : self { |
||
46 | |||
47 | $array = unserialize($string); |
||
48 | |||
49 | $rawResponse = new self(); |
||
50 | |||
51 | $rawResponse->request = $array['request']; |
||
52 | $rawResponse->header = $array['header']; |
||
53 | $rawResponse->body = $array['body']; |
||
54 | |||
55 | return $rawResponse; |
||
56 | } |
||
57 | } |