Remove deprecated method

This commit is contained in:
Samuel Georges 2016-02-20 08:19:14 +11:00
parent 54d749f034
commit 2e819f0142
1 changed files with 0 additions and 18 deletions

View File

@ -613,8 +613,6 @@ class RelationController extends ControllerBehavior
$this->relationObject->addConstraints();
}
$this->controller->relationExtendQuery($query, $this->field);
/*
* Allows pivot data to enter the fray
*/
@ -765,8 +763,6 @@ class RelationController extends ControllerBehavior
if (count($existingIds)) {
$query->whereNotIn($this->relationModel->getQualifiedKeyName(), $existingIds);
}
$this->controller->relationExtendQuery($query, $this->field);
});
}
@ -1204,20 +1200,6 @@ class RelationController extends ControllerBehavior
// Overrides
//
/**
* !!!!
* !!!! WARNING: DO NOT USE - This method is scheduled to be removed
* !!!!
*
* Controller override: Extend the query used for populating the list
* after the default query is processed.
* @param October\Rain\Database\Builder $query
* @param string $field
*/
public function relationExtendQuery($query, $field)
{
}
/**
* Provides an opportunity to manipulate the view widget.
* @param Backend\Classes\WidgetBase $widget