Skip to content

Commit

Permalink
Deprecate Doctrine\DBAL\Types\Type::getDefaultLength()
Browse files Browse the repository at this point in the history
  • Loading branch information
Majkl578 committed Aug 18, 2018
1 parent 7bbed59 commit c38bbcc
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions UPGRADE.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Upgrade to 2.9

## Deprecated `Doctrine\DBAL\Types\Type::getDefaultLength()`

This method was never used by DBAL internally. It is now deprecated and will be removed in DBAL 3.0.

## Deprecated `Doctrine\DBAL\Types\Type::__toString()`

Relying on string representation is discouraged and will be removed in DBAL 3.0.
Expand Down
2 changes: 1 addition & 1 deletion lib/Doctrine/DBAL/Types/Type.php
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ public function convertToPHPValue($value, AbstractPlatform $platform)
*
* @return int|null
*
* @todo Needed?
* @deprecated Rely on information provided by the platform instead.
*/
public function getDefaultLength(AbstractPlatform $platform)
{
Expand Down

0 comments on commit c38bbcc

Please sign in to comment.