Skip to content

Commit

Permalink
feat: TableKey takes into account the class name
Browse files Browse the repository at this point in the history
  • Loading branch information
german.krutov committed Aug 8, 2024
1 parent 896b79d commit 1a92a65
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/TestSuite/Fixture/ChecksumTestFixture.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,6 @@ protected function _hash(ConnectionInterface $connection): string
*/
protected function _getTableKey(): string
{
return $this->connection() . '-' . $this->table;
return $this->connection() . '-' . $this->table . '-' . get_class($this);

Check failure on line 121 in src/TestSuite/Fixture/ChecksumTestFixture.php

View workflow job for this annotation

GitHub Actions / Coding Standard & Static Analysis

Class name referenced via call of function get_class().
}
}

0 comments on commit 1a92a65

Please sign in to comment.