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