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