Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 9 |
Lines | 0 |
Ratio | 0 % |
Tests | 9 |
CRAP Score | 1 |
Changes | 0 |
1 | <?php |
||
76 | 2 | public static function createFromResponseArray(array $response) : SmsDetails |
|
77 | { |
||
78 | 2 | return new self( |
|
79 | 2 | $response['id'], |
|
80 | 2 | $response['from'], |
|
81 | 2 | $response['number_to'], |
|
82 | 2 | $response['status'], |
|
83 | 2 | $response['sms_count'], |
|
84 | 2 | $response['sms_content'], |
|
85 | 2 | ($response['price'] / 100) |
|
86 | ); |
||
87 | } |
||
88 | |||
145 |