Esempio n. 1
0
 /**
  * @param   string  $table
  * @param   Closure $closure
  *
  * @return  $this
  */
 public function fullJoin($table, Closure $closure)
 {
     $this->query->fullJoin($table, $closure);
     $this->isReadOnly = true;
     return $this;
 }