We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ea88b15 commit 97adb4eCopy full SHA for 97adb4e
src/Driver/Test/TestDriver.php
@@ -51,7 +51,7 @@ public function addTable(string $name, array $entries): static
51
*/
52
public function getTable(string $name): TestTable
53
{
54
- if (!$this->tables[$name]) {
+ if (!isset($this->tables[$name])) {
55
$this->tables[$name] = new TestTable($name);
56
}
57
return $this->tables[$name];
0 commit comments