Exemple #1
0
 /**
  * Add an or exists clause to the query.
  *
  * @param \Closure $callback
  * @param bool $not
  * @return \Illuminate\Database\Query\Builder|static 
  * @static 
  */
 public static function orWhereExists($callback, $not = false)
 {
     //Method inherited from \Illuminate\Database\Query\Builder
     return \October\Rain\Database\QueryBuilder::orWhereExists($callback, $not);
 }