-
-
Notifications
You must be signed in to change notification settings - Fork 56
Closed
Labels
Description
I'm trying to use this package to map inet[] and cidr[] types properly but I can't seem to get it working.
I tried adding the following into my Symfony config/doctrine.yaml:
doctrine:
dbal:
# ...
types:
# ...all the other types
inet[]: MartinGeorgiev\Doctrine\DBAL\Types\TextArray
cidr[]: MartinGeorgiev\Doctrine\DBAL\Types\TextArray
mapping_types:
# ...all the other types
inet[]: text[]
_inet: text[]
cidr[]: text[]
_cidr: text[]It doesn't change how the value is returned. What am I doing wrong?