| Conditions | 2 |
| Paths | 2 |
| Total Lines | 11 |
| Code Lines | 7 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 6 |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | public static function create(string $id, string $gameShortName, array $data = null): InlineQueryResultGameType |
||
| 35 | { |
||
| 36 | $instance = new static(); |
||
| 37 | $instance->type = static::TYPE_GAME; |
||
| 38 | $instance->id = $id; |
||
| 39 | $instance->gameShortName = $gameShortName; |
||
| 40 | if ($data) { |
||
| 41 | $instance->fill($data); |
||
| 42 | } |
||
| 43 | |||
| 44 | return $instance; |
||
| 45 | } |
||
| 47 |