Esempio n. 1
0
 /**
  * Add a "right join where" clause to the query.
  *
  * @param string $table
  * @param string $one
  * @param string $operator
  * @param string $two
  * @return \Illuminate\Database\Query\Builder|static 
  * @static 
  */
 public static function rightJoinWhere($table, $one, $operator, $two)
 {
     //Method inherited from \Illuminate\Database\Query\Builder
     return \October\Rain\Database\QueryBuilder::rightJoinWhere($table, $one, $operator, $two);
 }