for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TelegramBot\Entities;
/**
* Class InlineKeyboard
*
* @link https://core.telegram.org/bots/api#inlinekeyboardmarkup
*/
class InlineKeyboard extends Keyboard
{
* Creates instance of Keyboard
* @return InlineKeyboard
public static function make(): InlineKeyboard
return new self();
}