namespace App\Telegram\Commands;
use App\Telegram\Command;
class StartCommand extends Command
{
/**
* The name and signature of the bot command.
*
* @var string
*/
protected $signature = '/start';
/**
* The bot command description.
*
* @var string
*/
protected $description = 'Добро пожаловать!';
/**
* The keyboard of the bot command.
*
* @var array
*/
protected $keyboard = [
[AccessCommand::class]
];
/**
* Execute the bot command.
*
* @return void
*/
public function handle()
{
//
$this->sendResponse();
}
}
Laravel поставляется со множеством различных механизмов сессий, доступных через единый выразительный API.
что такое «session api»?