Skip to content

Commit

Permalink
Update SchemaHasherMysql.php
Browse files Browse the repository at this point in the history
  • Loading branch information
staabm committed Nov 7, 2024
1 parent 5cf8413 commit 203deb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/DbSchema/SchemaHasherMysql.php
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ public function hashDb(): string

try {
$result = $this->connection->query($query);
if ($result instanceof \mysqli_result) {
if ($result instanceof \mysqli_result) { // @phpstan-ignore-line
$row = $result->fetch_assoc();
$hash = $row['dbsignature'] ?? '';
}
Expand Down

0 comments on commit 203deb8

Please sign in to comment.