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

getKeyboardType() 공개 메소드

Get the type of keyboard, either "inline_keyboard" or "keyboard".
public getKeyboardType ( ) : string
리턴 string
    public function getKeyboardType()
    {
        return $this->isInlineKeyboard() ? 'inline_keyboard' : 'keyboard';
    }