Longman\TelegramBot\Entities\Keyboard::getKeyboardButtonClass PHP 메소드

getKeyboardButtonClass() 공개 메소드

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