Conditions | 2 |
Paths | 2 |
Total Lines | 11 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 7 |
CRAP Score | 2 |
Changes | 0 |
1 | <?php |
||
35 | 1 | public static function create($chatId, int $userId, array $data = null): UnbanChatMemberMethod |
|
36 | { |
||
37 | 1 | $instance = new static(); |
|
38 | 1 | $instance->chatId = $chatId; |
|
39 | 1 | $instance->userId = $userId; |
|
40 | |||
41 | 1 | if (!empty($data)) { |
|
42 | 1 | $instance->fill($data, ['chatId', 'userId']); |
|
43 | } |
||
44 | |||
45 | 1 | return $instance; |
|
46 | } |
||
48 |