LMongo\Eloquent\Model::touchOwners PHP Method

touchOwners() public method

Touch the owning relations of the model.
public touchOwners ( ) : void
return void
    public function touchOwners()
    {
        foreach ($this->touches as $relation) {
            $this->{$relation}()->touch();
        }
    }
Model