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 17, 2018
1 parent 319e20f commit 38e0e91
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.

## Deprecated `NULL` value of `$offset` in LIMIT queries

The `NULL` value of the `$offset` argument in `AbstractPlatform::(do)?ModifyLimitQuery()` methods is deprecated. If explicitly used in the method call, the absence of the offset should be indicated with a `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 38e0e91

Please sign in to comment.