Skip to content

Commit 1dda463

Browse files
authored
typehints for bindings (#55633)
1 parent b9e395b commit 1dda463

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/Illuminate/Database/Query/Builder.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4171,7 +4171,7 @@ public function getRawBindings()
41714171
* Set the bindings on the query builder.
41724172
*
41734173
* @param list<mixed> $bindings
4174-
* @param string $type
4174+
* @param "select"|"from"|"join"|"where"|"groupBy"|"having"|"order"|"union"|"unionOrder" $type
41754175
* @return $this
41764176
*
41774177
* @throws \InvalidArgumentException
@@ -4191,7 +4191,7 @@ public function setBindings(array $bindings, $type = 'where')
41914191
* Add a binding to the query.
41924192
*
41934193
* @param mixed $value
4194-
* @param string $type
4194+
* @param "select"|"from"|"join"|"where"|"groupBy"|"having"|"order"|"union"|"unionOrder" $type
41954195
* @return $this
41964196
*
41974197
* @throws \InvalidArgumentException

0 commit comments

Comments
 (0)