rahul chavan

Results 5 comments of rahul chavan

are you talking about json validation?

php has a json_validate function in its latest version ..fixing things for minor version does not make sense i guess..

$defaultValue = $nullable ? null : self::DEFAULT_VALUE_NONE; $propertyType = $nullable ? '?'.$typeHint : $typeHint; should be enough to get it done.

I did not find any example on map entity, you may consider this example below ```php #[Route(path: '/profile/{name:name}/{age:age}', name: 'profile', methods: ['GET'])] public function fetchProfile(Profile $profile): Response { // }...

@alamirault The main idea was to improve automapping doctrine entities. Now, automapping of entities in favor of mapped route parameters is deprecated. The code I posted is a working example...