Skip to content

Commit

Permalink
Use prefix Abstract in abstract class command. (#174)
Browse files Browse the repository at this point in the history
* Use prefix Abstract in abstract class command.
  • Loading branch information
terabytesoftw committed Jan 5, 2023
1 parent cbf1966 commit ea9f686
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/CommandPDO.php
Expand Up @@ -6,7 +6,7 @@

use PDOException;
use Throwable;
use Yiisoft\Db\Driver\PDO\CommandPDO as AbstractCommandPDO;
use Yiisoft\Db\Driver\PDO\AbstractCommandPDO;
use Yiisoft\Db\Driver\PDO\ConnectionPDOInterface;
use Yiisoft\Db\Exception\ConvertException;
use Yiisoft\Db\Exception\Exception;
Expand Down
2 changes: 1 addition & 1 deletion src/PDODriver.php
Expand Up @@ -5,7 +5,7 @@
namespace Yiisoft\Db\Sqlite;

use PDO;
use Yiisoft\Db\Driver\PDO\PDODriver as AbstractPDODriver;
use Yiisoft\Db\Driver\PDO\AbstractPDODriver;

final class PDODriver extends AbstractPDODriver
{
Expand Down
2 changes: 1 addition & 1 deletion src/TransactionPDO.php
Expand Up @@ -5,7 +5,7 @@
namespace Yiisoft\Db\Sqlite;

use Throwable;
use Yiisoft\Db\Driver\PDO\TransactionPDO as AbstractTransactionPDO;
use Yiisoft\Db\Driver\PDO\AbstractTransactionPDO;
use Yiisoft\Db\Exception\Exception;
use Yiisoft\Db\Exception\InvalidConfigException;
use Yiisoft\Db\Exception\NotSupportedException;
Expand Down

0 comments on commit ea9f686

Please sign in to comment.