Esempio n. 1
0
 /**
  * Add a nested where statement to the query.
  *
  * @param \Closure $callback
  * @param string $boolean
  * @return \Illuminate\Database\Query\Builder|static 
  * @static 
  */
 public static function whereNested($callback, $boolean = 'and')
 {
     //Method inherited from \Illuminate\Database\Query\Builder
     return \October\Rain\Database\QueryBuilder::whereNested($callback, $boolean);
 }