Conditions | 2 |
Paths | 2 |
Total Lines | 13 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 0 |
CRAP Score | 6 |
Changes | 0 |
1 | <?php |
||
54 | public static function create( |
||
55 | string $phoneNumber, |
||
56 | string $firstName, |
||
57 | array $data = null |
||
58 | ): InputContactMessageContentType { |
||
59 | $instance = new static(); |
||
60 | $instance->phoneNumber = $phoneNumber; |
||
61 | $instance->firstName = $firstName; |
||
62 | if ($data) { |
||
63 | $instance->fill($data); |
||
64 | } |
||
65 | |||
66 | return $instance; |
||
67 | } |
||
69 |