LMongo\Eloquent\Relations\BelongsTo::associate PHP 메소드

associate() 공개 메소드

Associate the model instance to the given parent.
public associate ( Model $model ) : Model
$model LMongo\Eloquent\Model
리턴 LMongo\Eloquent\Model
    public function associate(Model $model)
    {
        $this->parent->setAttribute($this->foreignKey, $model->getKey());
        return $this->parent->setRelation($this->relation, $model);
    }