Hootlex\Moderation\ModerationScope::removeBinding PHP Method

removeBinding() protected method

Remove scope constraint from the query.
protected removeBinding ( $query, integer $key )
$query
$key integer
    protected function removeBinding($query, $key)
    {
        $bindings = $query->getRawBindings()['where'];
        unset($bindings[$key]);
        $query->setBindings($bindings);
    }