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;
* Channel chat created command
class ChannelchatcreatedCommand extends SystemCommand
{
* @var string
protected $name = 'Channelchatcreated';
protected $description = 'Channel chat created';
protected $version = '1.1.0';
* Command execute method
* @return mixed
* @throws \Longman\TelegramBot\Exception\TelegramException
public function execute()
//$message = $this->getMessage();
//$channel_chat_created = $message->getChannelChatCreated();
return parent::execute();
}