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
af7644ed
Unverified
Commit
af7644ed
authored
Jul 01, 2020
by
Sergei Morozov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
DBALException::invalidPlatformType() is unused as of v2.7.0
parent
28ac2961
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
0 deletions
+7
-0
UPGRADE.md
UPGRADE.md
+4
-0
DBALException.php
lib/Doctrine/DBAL/DBALException.php
+3
-0
No files found.
UPGRADE.md
View file @
af7644ed
# Upgrade to 2.11
## `DBALException` factory method deprecations
1.
`DBALException::invalidPlatformType()`
is deprecated as unused as of v2.7.0.
## `AbstractPlatform::fixSchemaElementName()` is deprecated.
The method is not used anywhere except for tests.
...
...
lib/Doctrine/DBAL/DBALException.php
View file @
af7644ed
...
...
@@ -38,6 +38,9 @@ class DBALException extends Exception
return
new
self
(
sprintf
(
"Operation '%s' is not supported by platform."
,
$method
));
}
/**
* @deprecated Use {@link invalidPlatformType()} instead.
*/
public
static
function
invalidPlatformSpecified
()
:
self
{
return
new
self
(
...
...
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