We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6d3b4ac commit 4ae8e99Copy full SHA for 4ae8e99
src/Analyzer/QueryPlanResult.php
@@ -35,7 +35,7 @@ public function getSimulatedQuery(): string
35
/**
36
* @param self::* $result
37
*/
38
- public function addRow(string $table, string $result)
+ public function addRow(string $table, string $result): void
39
{
40
$this->result[$table] = $result;
41
}
src/QueryReflection/ReflectionCache.php
@@ -101,7 +101,7 @@ public function getSchemaHash()
101
return $this->schemaHash;
102
103
104
- public function setSchemaHash(string $hash)
+ public function setSchemaHash(string $hash): void
105
106
$this->cacheIsDirty = true;
107
$this->schemaHash = $hash;
0 commit comments