Total Complexity | 1 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 0 |
1 | <?php |
||
15 | class InlineKeyboardMarkupType |
||
16 | { |
||
17 | /** |
||
18 | * Array of button rows, each represented by an Array of InlineKeyboardButton objects. |
||
19 | * |
||
20 | * @var InlineKeyboardButtonType[][] |
||
21 | */ |
||
22 | public $inlineKeyboard; |
||
23 | |||
24 | /** |
||
25 | * @param array $inlineKeyboard |
||
26 | * |
||
27 | * @return InlineKeyboardMarkupType |
||
28 | */ |
||
29 | 19 | public static function create(array $inlineKeyboard): InlineKeyboardMarkupType |
|
37 |