| Conditions | 2 |
| Paths | 2 |
| Total Lines | 10 |
| Code Lines | 6 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 29 | public static function create($chatId, int $messageId, array $data = null): StopMessageLiveLocationMethod |
||
| 30 | { |
||
| 31 | $instance = new static(); |
||
| 32 | $instance->chatId = $chatId; |
||
| 33 | $instance->messageId = $messageId; |
||
| 34 | if ($data) { |
||
| 35 | $instance->fill($data); |
||
| 36 | } |
||
| 37 | |||
| 38 | return $instance; |
||
| 39 | } |
||
| 60 |