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;
* Edited channel post command
class EditedchannelpostCommand extends SystemCommand
{
* @var string
protected $name = 'Editedchannelpost';
protected $description = 'Handle edited channel post';
protected $version = '1.0.0';
* Execute command
* @return mixed
* @throws \Longman\TelegramBot\Exception\TelegramException
public function execute()
//$edited_channel_post = $this->getEditedChannelPost();
return parent::execute();
}