Skip to content
Merged
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
8 changes: 4 additions & 4 deletions src/Illuminate/Database/Query/Builder.php
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ class Builder implements BuilderContract
/**
* The orderings for the query.
*
* @var array
* @var array|null
*/
public $orders;

Expand Down Expand Up @@ -193,7 +193,7 @@ class Builder implements BuilderContract
/**
* The orderings for the union query.
*
* @var array
* @var array|null
*/
public $unionOrders;

Expand Down Expand Up @@ -768,7 +768,7 @@ public function crossJoinSub($query, $as)
*
* @param \Illuminate\Database\Query\Builder $parentQuery
* @param string $type
* @param string $table
* @param \Illuminate\Contracts\Database\Query\Expression|string $table
* @return \Illuminate\Database\Query\JoinClause
*/
protected function newJoinClause(self $parentQuery, $type, $table)
Expand All @@ -781,7 +781,7 @@ protected function newJoinClause(self $parentQuery, $type, $table)
*
* @param \Illuminate\Database\Query\Builder $parentQuery
* @param string $type
* @param string $table
* @param \Illuminate\Contracts\Database\Query\Expression|string $table
* @return \Illuminate\Database\Query\JoinLateralClause
*/
protected function newJoinLateralClause(self $parentQuery, $type, $table)
Expand Down