LMongo\Eloquent\Relations\BelongsTo::associate PHP Method

associate() public method

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