Skip to content
This repository was archived by the owner on Jan 29, 2020. It is now read-only.
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/Sql/Join.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ public function getJoins()
/**
* @param string|array|TableIdentifier $name A table name on which to join, or a single
* element associative array, of the form alias => table, or TableIdentifier instance
* @param string $on A string specification describing the fields to join on.
* @param string|Predicate\Expression $on A specification describing the fields to join on.
* @param string|string[]|int|int[] $columns A single column name, an array
* of column names, or (a) specification(s) such as SQL_STAR representing
* the columns to join.
Expand Down
2 changes: 1 addition & 1 deletion src/Sql/Select.php
Original file line number Diff line number Diff line change
Expand Up @@ -263,7 +263,7 @@ public function columns(array $columns, $prefixColumnsWithTable = true)
* Create join clause
*
* @param string|array|TableIdentifier $name
* @param string $on
* @param string|Predicate\Expression $on
* @param string|array $columns
* @param string $type one of the JOIN_* constants
* @return self Provides a fluent interface
Expand Down