| Total Complexity | 1 |
| Total Lines | 17 |
| 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 | * InlineKeyboardMarkupType constructor. |
||
| 26 | * |
||
| 27 | * @param array $inlineKeyboard |
||
| 28 | */ |
||
| 29 | 3 | public function __construct(array $inlineKeyboard = []) |
|
| 34 |