We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Hyperf\Database\Query\Grammars\Grammar::compileUpdate
1 parent 62f1908 commit 1455cc9Copy full SHA for 1455cc9
src/Query/Grammars/SQLiteGrammar.php
@@ -35,10 +35,8 @@ class SQLiteGrammar extends Grammar
35
36
/**
37
* Compile an update statement into SQL.
38
- *
39
- * @param array $values
40
*/
41
- public function compileUpdate(Builder $query, $values): string
+ public function compileUpdate(Builder $query, array $values): string
42
{
43
if ($query->joins || $query->limit) {
44
return $this->compileUpdateWithJoinsOrLimit($query, $values);
0 commit comments