Skip to content

Commit 97adb4e

Browse files
committed
fix warning
1 parent ea88b15 commit 97adb4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Driver/Test/TestDriver.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ public function addTable(string $name, array $entries): static
5151
*/
5252
public function getTable(string $name): TestTable
5353
{
54-
if (!$this->tables[$name]) {
54+
if (!isset($this->tables[$name])) {
5555
$this->tables[$name] = new TestTable($name);
5656
}
5757
return $this->tables[$name];

0 commit comments

Comments
 (0)