Skip to content

Commit

Permalink
bug #141 Add requiresSQLCommentHint to AbstractJsonCollectionEnumType…
Browse files Browse the repository at this point in the history
… (notFloran)

This PR was merged into the 1.x-dev branch.

Discussion
----------

Add requiresSQLCommentHint to AbstractJsonCollectionEnumType

Fix #140

Commits
-------

f95a68d Add requiresSQLCommentHint to AbstractJsonCollectionEnumType
  • Loading branch information
ogizanagi committed Jun 25, 2021
2 parents baf6165 + f95a68d commit 5b57142
Showing 1 changed file with 8 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,13 @@ public function convertToPHPValue($value, AbstractPlatform $platform)
return $values;
}

/**
* {@inheritdoc}
*/
public function requiresSQLCommentHint(AbstractPlatform $platform)
{
return true;
}

abstract protected function getEnumClass(): string;
}

0 comments on commit 5b57142

Please sign in to comment.