Skip to content

Commit

Permalink
Update docblocks (#53139)
Browse files Browse the repository at this point in the history
Co-authored-by: Xurshudyan <[email protected]>
  • Loading branch information
xurshudyan and Xurshudyan authored Oct 13, 2024
1 parent 08c37f4 commit 964ef32
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 964ef32

Please sign in to comment.