Skip to content

Commit

Permalink
Fix setTablePrefix()
Browse files Browse the repository at this point in the history
  • Loading branch information
Tigrov committed Jan 30, 2024
1 parent 7042f71 commit 24d5570
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Driver/Pdo/AbstractPdoConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ public function setEmulatePrepare(bool $value): void

public function setTablePrefix(string $value): void
{
$this->tablePrefix = $value;
parent::setTablePrefix($value);
$this->quoter?->setTablePrefix($value);

Check failure on line 204 in src/Driver/Pdo/AbstractPdoConnection.php

View workflow job for this annotation

GitHub Actions / psalm / PHP 8.1-ubuntu-latest

UndefinedInterfaceMethod

src/Driver/Pdo/AbstractPdoConnection.php:204:25: UndefinedInterfaceMethod: Method Yiisoft\Db\Schema\QuoterInterface::setTablePrefix does not exist (see https://psalm.dev/181)

Check failure on line 204 in src/Driver/Pdo/AbstractPdoConnection.php

View workflow job for this annotation

GitHub Actions / psalm / PHP 8.2-ubuntu-latest

UndefinedInterfaceMethod

src/Driver/Pdo/AbstractPdoConnection.php:204:25: UndefinedInterfaceMethod: Method Yiisoft\Db\Schema\QuoterInterface::setTablePrefix does not exist (see https://psalm.dev/181)

Check failure on line 204 in src/Driver/Pdo/AbstractPdoConnection.php

View workflow job for this annotation

GitHub Actions / psalm / PHP 8.1-ubuntu-latest

UndefinedInterfaceMethod

src/Driver/Pdo/AbstractPdoConnection.php:204:25: UndefinedInterfaceMethod: Method Yiisoft\Db\Schema\QuoterInterface::setTablePrefix does not exist (see https://psalm.dev/181)
}

Expand Down

0 comments on commit 24d5570

Please sign in to comment.