Skip to content

Commit cb780ae

Browse files
committed
chore: remove incompatible function
mongodb@1d74dc3
1 parent 491afd4 commit cb780ae

File tree

1 file changed

+0
-18
lines changed

1 file changed

+0
-18
lines changed

src/Query/Builder.php

Lines changed: 0 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -518,24 +518,6 @@ public function orderBy($column, $direction = 'asc')
518518
return $this;
519519
}
520520

521-
/**
522-
* Add a "where all" clause to the query.
523-
*
524-
* @param string $column
525-
* @param array $values
526-
* @param string $boolean
527-
* @param bool $not
528-
* @return $this
529-
*/
530-
public function whereAll($column, array $values, $boolean = 'and', $not = false)
531-
{
532-
$type = 'all';
533-
534-
$this->wheres[] = compact('column', 'type', 'boolean', 'values', 'not');
535-
536-
return $this;
537-
}
538-
539521
/**
540522
* @inheritdoc
541523
*/

0 commit comments

Comments
 (0)