Skip to content

Commit 565bd90

Browse files
Fix more phpdoc and code style. (#220)
1 parent ef83890 commit 565bd90

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

src/ConnectionPDO.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
use Yiisoft\Db\Schema\QuoterInterface;
1212
use Yiisoft\Db\Schema\SchemaInterface;
1313
use Yiisoft\Db\Transaction\TransactionInterface;
14+
1415
use function str_starts_with;
1516

1617
/**

src/Dsn.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public function __construct(private string $driver, private string $databaseName
3232
* ```php
3333
* $dsn = new Dsn('sqlite', __DIR__ . '/data/test.sq3');
3434
* $pdoDriver = new PDODriver($dsn->asString());
35-
* $db = new ConnectionPDO($pdoDriver, $queryCache, $schemaCache);
35+
* $db = new ConnectionPDO($pdoDriver, $schemaCache);
3636
* ```
3737
*
3838
* Will result in the DSN string `sqlite:/path/to/data/test.sq3`.

0 commit comments

Comments
 (0)