fix: Add missing UUID doctrine type.

This commit is contained in:
Pol Dellaiera 2021-12-21 14:54:28 +01:00
parent 793f7724a7
commit ea839a4b52
No known key found for this signature in database
GPG Key ID: D476DFE9C67467CA

View File

@ -38,6 +38,7 @@ use Chill\MainBundle\Form\LocationTypeType;
use Chill\MainBundle\Form\UserJobType;
use Chill\MainBundle\Form\UserType;
use Exception;
use Ramsey\Uuid\Doctrine\UuidType;
use Symfony\Component\Config\FileLocator;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\PrependExtensionInterface;
@ -229,12 +230,9 @@ class ChillMainExtension extends Extension implements
'geometry' => 'string',
],
'types' => [
'dateinterval' => [
'class' => NativeDateIntervalType::class,
],
'point' => [
'class' => PointType::class,
],
'dateinterval' => NativeDateIntervalType::class,
'point' => PointType::class,
'uuid' => UuidType::class
],
],
]