Skip to content

Commit 964ef32

Browse files
xurshudyanXurshudyan
andauthored
Update docblocks (#53139)
Co-authored-by: Xurshudyan <[email protected]>
1 parent 08c37f4 commit 964ef32

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/Illuminate/Database/Query/Builder.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ class Builder implements BuilderContract
144144
/**
145145
* The orderings for the query.
146146
*
147-
* @var array
147+
* @var array|null
148148
*/
149149
public $orders;
150150

@@ -193,7 +193,7 @@ class Builder implements BuilderContract
193193
/**
194194
* The orderings for the union query.
195195
*
196-
* @var array
196+
* @var array|null
197197
*/
198198
public $unionOrders;
199199

@@ -768,7 +768,7 @@ public function crossJoinSub($query, $as)
768768
*
769769
* @param \Illuminate\Database\Query\Builder $parentQuery
770770
* @param string $type
771-
* @param string $table
771+
* @param \Illuminate\Contracts\Database\Query\Expression|string $table
772772
* @return \Illuminate\Database\Query\JoinClause
773773
*/
774774
protected function newJoinClause(self $parentQuery, $type, $table)
@@ -781,7 +781,7 @@ protected function newJoinClause(self $parentQuery, $type, $table)
781781
*
782782
* @param \Illuminate\Database\Query\Builder $parentQuery
783783
* @param string $type
784-
* @param string $table
784+
* @param \Illuminate\Contracts\Database\Query\Expression|string $table
785785
* @return \Illuminate\Database\Query\JoinLateralClause
786786
*/
787787
protected function newJoinLateralClause(self $parentQuery, $type, $table)

0 commit comments

Comments
 (0)