mergeWheres() public method

Merge an array of where clauses and bindings.
public mergeWheres ( array $wheres, array $bindings ) : void
$wheres array
$bindings array
return void
Example #1
0
 /**
  * Merge an array of where clauses and bindings.
  *
  * @param array $wheres
  * @param array $bindings
  * @return void 
  * @static 
  */
 public static function mergeWheres($wheres, $bindings)
 {
     \Illuminate\Database\Query\Builder::mergeWheres($wheres, $bindings);
 }