Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Cannot pass shorthand entity class name to deserialize method #378

Closed
Actine opened this issue Apr 21, 2014 · 3 comments
Closed

Cannot pass shorthand entity class name to deserialize method #378

Actine opened this issue Apr 21, 2014 · 3 comments

Comments

@Actine
Copy link

Actine commented Apr 21, 2014

Hello.
This might have been already reported... Anyway, the issue is that the notation like this:

$object = $serializer->deserialize($content, 'MyBundle:MyEntity', 'json');

doesn't seem to be supported (fails at parsing class name), so one has to pass full class name like this:

$object = $serializer->deserialize($content, 'MyOrg\MyBundle\Entity\MyEntity', 'json');

Not a show stopper, but not very nice in terms of Symfony integration.

@stof
Copy link
Contributor

stof commented Apr 23, 2014

MyBundle:MyEntity is specific to a doctrine entity manager (which has a configuration for namespace aliases). And if you have a project using both the ORM and the ODM, this will be ambiguous in this context as there is no reason to use the ORM rather than the ODM (or the opposite). The : shorthand syntaxes in Symfony are always specific to a given context. There is no logical context for the serializer IMO.

@stof
Copy link
Contributor

stof commented Apr 23, 2014

btw, if you use PHP 5.5+, you can make it simpler:

$object = $serializer->deserialize($content, MyEntity::class, 'json');

@Actine
Copy link
Author

Actine commented May 1, 2014

Fair enough

@Actine Actine closed this as completed May 1, 2014
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants