Skip to content

Commit

Permalink
Merge pull request #4117 from morozov/new-driver-class-fixes
Browse files Browse the repository at this point in the history
Fixes for the recently introduced driver-level deprecations
  • Loading branch information
morozov authored Jun 27, 2020
2 parents 1c42543 + fed41c6 commit 7e45a37
Show file tree
Hide file tree
Showing 10 changed files with 1 addition and 21 deletions.
2 changes: 0 additions & 2 deletions lib/Doctrine/DBAL/Driver/IBMDB2/Connection.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Driver\IBMDB2;

final class Connection extends DB2Connection
Expand Down
2 changes: 0 additions & 2 deletions lib/Doctrine/DBAL/Driver/IBMDB2/Statement.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Driver\IBMDB2;

final class Statement extends DB2Statement
Expand Down
2 changes: 0 additions & 2 deletions lib/Doctrine/DBAL/Driver/Mysqli/Connection.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Driver\Mysqli;

final class Connection extends MysqliConnection
Expand Down
2 changes: 0 additions & 2 deletions lib/Doctrine/DBAL/Driver/Mysqli/Statement.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Driver\Mysqli;

final class Statement extends MysqliStatement
Expand Down
2 changes: 0 additions & 2 deletions lib/Doctrine/DBAL/Driver/OCI8/Connection.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Driver\OCI8;

final class Connection extends OCI8Connection
Expand Down
2 changes: 0 additions & 2 deletions lib/Doctrine/DBAL/Driver/OCI8/Statement.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Driver\OCI8;

final class Statement extends OCI8Statement
Expand Down
2 changes: 0 additions & 2 deletions lib/Doctrine/DBAL/Driver/PDO/Connection.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Driver\PDO;

use Doctrine\DBAL\Driver\PDOConnection;
Expand Down
2 changes: 0 additions & 2 deletions lib/Doctrine/DBAL/Driver/PDO/Statement.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Driver\PDO;

use Doctrine\DBAL\Driver\PDOStatement;
Expand Down
2 changes: 0 additions & 2 deletions lib/Doctrine/DBAL/Driver/SQLSrv/Connection.php
Original file line number Diff line number Diff line change
@@ -1,7 +1,5 @@
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Driver\SQLSrv;

final class Connection extends SQLSrvConnection
Expand Down
4 changes: 1 addition & 3 deletions lib/Doctrine/DBAL/Driver/SQLSrv/Statement.php
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
<?php

declare(strict_types=1);

namespace Doctrine\DBAL\Driver\SQLSrv;

class Statement extends SQLSrvStatement
final class Statement extends SQLSrvStatement
{
}

0 comments on commit 7e45a37

Please sign in to comment.