LMongo\Eloquent\Model::touchOwners PHP 메소드

touchOwners() 공개 메소드

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