LMongo\Eloquent\Relations\Relation::touch PHP 메소드

touch() 공개 메소드

Touch all of the related models for the relationship.
public touch ( ) : void
리턴 void
    public function touch()
    {
        $column = $this->getRelated()->getUpdatedAtColumn();
        $this->rawUpdate(array($column => $this->getRelated()->freshTimestamp()));
    }