Telegram\Bot\Objects\Update::isType PHP Method

isType() public method

Determine if the update is of given type
public isType ( string $type ) : boolean
$type string
return boolean
    public function isType($type)
    {
        if ($this->has(strtolower($type))) {
            return true;
        }
        return $this->detectType() === $type;
    }