コード例 #1
0
ファイル: BaseQuery.php プロジェクト: cgslivre/database-1
 /**
  * @param   string  $table
  * @param   Closure $closure
  *
  * @return  $this
  */
 public function rightJoin($table, Closure $closure)
 {
     $this->query->rightJoin($table, $closure);
     $this->isReadOnly = true;
     return $this;
 }