PawelBichalski

Results 1 comments of PawelBichalski

In version 4.x You can use custom PropertyDescriber: class UuidInterfacePropertyDescriber implements PropertyDescriberInterface { public function describe(Type $type, Schema $property, array $groups = null) { $property->setType('string'); $property->setFormat('uuid'); } public function supports($type):...