diff --git a/src/Eloquent/Builder.php b/src/Eloquent/Builder.php index bfa3d634a..d8c29a218 100644 --- a/src/Eloquent/Builder.php +++ b/src/Eloquent/Builder.php @@ -21,16 +21,16 @@ class Builder extends EloquentBuilder 'avg', 'count', 'dd', - 'doesntExist', + 'doesntexist', 'dump', 'exists', - 'getBindings', - 'getConnection', - 'getGrammar', + 'getbindings', + 'getconnection', + 'getgrammar', 'insert', - 'insertGetId', - 'insertOrIgnore', - 'insertUsing', + 'insertgetid', + 'insertorignore', + 'insertusing', 'max', 'min', 'pluck', @@ -38,7 +38,7 @@ class Builder extends EloquentBuilder 'push', 'raw', 'sum', - 'toSql', + 'tosql', ]; /** diff --git a/src/Query/Builder.php b/src/Query/Builder.php index f83bce3e2..ea4f6ddb7 100644 --- a/src/Query/Builder.php +++ b/src/Query/Builder.php @@ -518,24 +518,6 @@ public function orderBy($column, $direction = 'asc') return $this; } - /** - * Add a "where all" clause to the query. - * - * @param string $column - * @param array $values - * @param string $boolean - * @param bool $not - * @return $this - */ - public function whereAll($column, array $values, $boolean = 'and', $not = false) - { - $type = 'all'; - - $this->wheres[] = compact('column', 'type', 'boolean', 'values', 'not'); - - return $this; - } - /** * @inheritdoc */