Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[11.x] PHPDoc Improvements #53139

Merged
merged 1 commit into from
Oct 13, 2024
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