Skip to content

Commit

Permalink
Merge pull request #60 from Nyholm/patch-deprecations
Browse files Browse the repository at this point in the history
Fix DoctrineBundle deprecation notices
Fixes #50
  • Loading branch information
X-Coder264 authored Jun 4, 2019
2 parents 82c6995 + fa3e999 commit fbde15b
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions DBAL/Type/ImplodedArray.php
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,11 @@ public function getSQLDeclaration(array $fieldDeclaration, AbstractPlatform $pla
return parent::getSQLDeclaration($fieldDeclaration, $platform);
}

public function requiresSQLCommentHint(AbstractPlatform $platform)
{
return true;
}

private function assertValueCanBeImploded($value): void
{
if (null === $value) {
Expand Down

0 comments on commit fbde15b

Please sign in to comment.