Skip to content

Commit

Permalink
Removed redundant PHPDoc block
Browse files Browse the repository at this point in the history
  • Loading branch information
evil1 committed Jan 5, 2025
1 parent 64f818c commit 23c9235
Showing 1 changed file with 1 addition and 10 deletions.
11 changes: 1 addition & 10 deletions tests/Common/CommonSchemaTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -405,19 +405,10 @@ public function testGetTableNames(array $pdoAttributes): void
$db->close();
}

/**
* @dataProvider \Yiisoft\Db\Tests\Provider\SchemaProvider::pdoAttributes
*
* @throws NotSupportedException
*/
public function testHasTable(array $pdoAttributes): void
public function testHasTable(): void
{
$db = $this->getConnection(true);

foreach ($pdoAttributes as $name => $value) {
$db->getPDO()?->setAttribute($name, $value);
}

$schema = $db->getSchema();

$this->assertTrue($schema->hasTable('customer'));
Expand Down

0 comments on commit 23c9235

Please sign in to comment.