for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the TelegramBot package.
*
* (c) Avtandil Kikabidze aka LONGMAN <[email protected]>
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
namespace Longman\TelegramBot\Commands\SystemCommands;
use Longman\TelegramBot\Commands\SystemCommand;
* Generic command
class GenericCommand extends SystemCommand
{
* @var string
protected $name = 'generic';
protected $description = 'Handles generic commands or is executed by default when a command is not found';
protected $version = '1.1.0';
}