Longman\TelegramBot\Commands\Command::setUpdate PHP Method

setUpdate() public method

Set update object
public setUpdate ( Update $update = null ) : Command
$update Longman\TelegramBot\Entities\Update
return Command
    public function setUpdate(Update $update = null)
    {
        if ($update !== null) {
            $this->update = $update;
            $this->message = $this->update->getMessage();
        }
        return $this;
    }