PHP code example of korchasa / laravel-telegram-bot
1. Go to this page and download the library: Download korchasa/laravel-telegram-bot library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
korchasa / laravel-telegram-bot example snippets
namespace App;
use korchasa\LaravelTelegramBot\BaseBot;
use Finite\State\StateInterface;
use korchasa\Telegram\Update;
class ExampleBot extends BaseBot
{
/**
* @throws \Finite\Exception\StateException
*/
public function start()
{
$this->sendMessage('What\'s your name?');
$this->transition('wait_for_name');
}
public function wait_for_name(Update $update) {
if ($update === 'korchasa') {
$this->transition('special_name_entered');
} else {
$this->transition('name_entered');
}
}
public function hello()
{
$this->sendMessage('What\'s your name?');
}
public function states()
{
return [
'start' => [
'type' => StateInterface::TYPE_INITIAL,
],
'wait_for_name' => [
'type' => StateInterface::TYPE_NORMAL,
],
'hello' => [
'type' => StateInterface::TYPE_FINAL,
],
];
}
public function transitions()
{
return [
'wait_for_name' => ['from' => ['start'], 'to' => 'wait_for_name'],
'name_entered' => ['from' => ['wait_for_name'], 'to' => 'hello'],
];
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.