Locker\Repository\Statement\EloquentLinker::unQueue PHP Method

unQueue() private method

Unqueues the statement so that it doesn't get relinked.
private unQueue ( Model $model )
$model Illuminate\Database\Eloquent\Model
    private function unQueue(Model $model)
    {
        $updated_index = array_search($model, $this->to_update);
        if ($updated_index !== false) {
            array_splice($this->to_update, $updated_index, 1);
        }
    }