LMongo\Eloquent\Model::touch PHP Method

touch() public method

Update the model's update timestamp.
public touch ( ) : boolean
return boolean
    public function touch()
    {
        $this->updateTimestamps();
        return $this->save();
    }
Model