Longman\TelegramBot\Entities\Keyboard::getKeyboardButtonClass PHP Method

getKeyboardButtonClass() public method

Get the proper keyboard button class for this keyboard.
public getKeyboardButtonClass ( ) : KeyboardButton | InlineKeyboardButton
return KeyboardButton | InlineKeyboardButton
    public function getKeyboardButtonClass()
    {
        return $this->isInlineKeyboard() ? InlineKeyboardButton::class : KeyboardButton::class;
    }