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

touch() 공개 메소드

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