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