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;
use Longman\TelegramBot\Request;
abstract class CustomSystemCommand extends Command
{
* A system command just executes
* Although system commands should just work and return a successful ServerResponse,
* each system command can override this method to add custom functionality.
* @return \Longman\TelegramBot\Entities\ServerResponse
public function execute()
//System command, return empty ServerResponse by default
return Request::emptyResponse();
}