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
b75cf202
Unverified
Commit
b75cf202
authored
Jun 06, 2019
by
Sergei Morozov
Committed by
GitHub
Jun 06, 2019
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #3598 from morozov/deprecate-unused
Deprecated some unused code bits
parents
97b7305f
9706ef97
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
15 additions
and
1 deletion
+15
-1
UPGRADE.md
UPGRADE.md
+8
-0
OCI8Statement.php
lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php
+5
-1
AbstractPlatform.php
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
+2
-0
No files found.
UPGRADE.md
View file @
b75cf202
# Upgrade to 2.10
## Deprecated `Doctrine\DBAL\Platforms::_getAlterTableIndexForeignKeySQL()`
Method
`Doctrine\DBAL\Platforms::_getAlterTableIndexForeignKeySQL()`
has been deprecated as no longer used.
## Deprecated `Doctrine\DBAL\Driver\OCI8\OCI8Statement::$_PARAM`
Property
`Doctrine\DBAL\Driver\OCI8\OCI8Statement::$_PARAM`
has been deprecated as not used.
## Deprecated `Doctrine\DBAL\Driver::getName()`
Relying on the name of the driver is discouraged. For referencing the driver, use its class name.
...
...
lib/Doctrine/DBAL/Driver/OCI8/OCI8Statement.php
View file @
b75cf202
...
...
@@ -58,7 +58,11 @@ class OCI8Statement implements IteratorAggregate, Statement
/** @var OCI8Connection */
protected
$_conn
;
/** @var string */
/**
* @deprecated
*
* @var string
*/
protected
static
$_PARAM
=
':param'
;
/** @var int[] */
...
...
lib/Doctrine/DBAL/Platforms/AbstractPlatform.php
View file @
b75cf202
...
...
@@ -2140,6 +2140,8 @@ abstract class AbstractPlatform
/**
* Common code for alter table statement generation that updates the changed Index and Foreign Key definitions.
*
* @deprecated
*
* @return string[]
*/
protected
function
_getAlterTableIndexForeignKeySQL
(
TableDiff
$diff
)
...
...
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