Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
D
doctrine-dbal
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Tomáš Trávníček
doctrine-dbal
Commits
7e45a379
Unverified
Commit
7e45a379
authored
Jun 27, 2020
by
Sergei Morozov
Committed by
GitHub
Jun 27, 2020
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4117 from morozov/new-driver-class-fixes
Fixes for the recently introduced driver-level deprecations
parents
1c42543c
fed41c67
Changes
10
Hide whitespace changes
Inline
Side-by-side
Showing
10 changed files
with
1 addition
and
21 deletions
+1
-21
Connection.php
lib/Doctrine/DBAL/Driver/IBMDB2/Connection.php
+0
-2
Statement.php
lib/Doctrine/DBAL/Driver/IBMDB2/Statement.php
+0
-2
Connection.php
lib/Doctrine/DBAL/Driver/Mysqli/Connection.php
+0
-2
Statement.php
lib/Doctrine/DBAL/Driver/Mysqli/Statement.php
+0
-2
Connection.php
lib/Doctrine/DBAL/Driver/OCI8/Connection.php
+0
-2
Statement.php
lib/Doctrine/DBAL/Driver/OCI8/Statement.php
+0
-2
Connection.php
lib/Doctrine/DBAL/Driver/PDO/Connection.php
+0
-2
Statement.php
lib/Doctrine/DBAL/Driver/PDO/Statement.php
+0
-2
Connection.php
lib/Doctrine/DBAL/Driver/SQLSrv/Connection.php
+0
-2
Statement.php
lib/Doctrine/DBAL/Driver/SQLSrv/Statement.php
+1
-3
No files found.
lib/Doctrine/DBAL/Driver/IBMDB2/Connection.php
View file @
7e45a379
<?php
declare
(
strict_types
=
1
);
namespace
Doctrine\DBAL\Driver\IBMDB2
;
final
class
Connection
extends
DB2Connection
...
...
lib/Doctrine/DBAL/Driver/IBMDB2/Statement.php
View file @
7e45a379
<?php
declare
(
strict_types
=
1
);
namespace
Doctrine\DBAL\Driver\IBMDB2
;
final
class
Statement
extends
DB2Statement
...
...
lib/Doctrine/DBAL/Driver/Mysqli/Connection.php
View file @
7e45a379
<?php
declare
(
strict_types
=
1
);
namespace
Doctrine\DBAL\Driver\Mysqli
;
final
class
Connection
extends
MysqliConnection
...
...
lib/Doctrine/DBAL/Driver/Mysqli/Statement.php
View file @
7e45a379
<?php
declare
(
strict_types
=
1
);
namespace
Doctrine\DBAL\Driver\Mysqli
;
final
class
Statement
extends
MysqliStatement
...
...
lib/Doctrine/DBAL/Driver/OCI8/Connection.php
View file @
7e45a379
<?php
declare
(
strict_types
=
1
);
namespace
Doctrine\DBAL\Driver\OCI8
;
final
class
Connection
extends
OCI8Connection
...
...
lib/Doctrine/DBAL/Driver/OCI8/Statement.php
View file @
7e45a379
<?php
declare
(
strict_types
=
1
);
namespace
Doctrine\DBAL\Driver\OCI8
;
final
class
Statement
extends
OCI8Statement
...
...
lib/Doctrine/DBAL/Driver/PDO/Connection.php
View file @
7e45a379
<?php
declare
(
strict_types
=
1
);
namespace
Doctrine\DBAL\Driver\PDO
;
use
Doctrine\DBAL\Driver\PDOConnection
;
...
...
lib/Doctrine/DBAL/Driver/PDO/Statement.php
View file @
7e45a379
<?php
declare
(
strict_types
=
1
);
namespace
Doctrine\DBAL\Driver\PDO
;
use
Doctrine\DBAL\Driver\PDOStatement
;
...
...
lib/Doctrine/DBAL/Driver/SQLSrv/Connection.php
View file @
7e45a379
<?php
declare
(
strict_types
=
1
);
namespace
Doctrine\DBAL\Driver\SQLSrv
;
final
class
Connection
extends
SQLSrvConnection
...
...
lib/Doctrine/DBAL/Driver/SQLSrv/Statement.php
View file @
7e45a379
<?php
declare
(
strict_types
=
1
);
namespace
Doctrine\DBAL\Driver\SQLSrv
;
class
Statement
extends
SQLSrvStatement
final
class
Statement
extends
SQLSrvStatement
{
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment