for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace TelegramBot\Traits;
use TelegramBot\Entities\Update;
/**
* HandlerTrait class
*
* @link https://github.com/telegram-bot-php/core
* @author Shahrad Elahi (https://github.com/shahradelahi)
* @license https://github.com/telegram-bot-php/core/blob/master/LICENSE (MIT License)
*/
trait HandlerTrait
{
public function __process(Update $update): void
// TODO: Implement __process() method.
}