Last active
October 14, 2022 12:24
-
-
Save Epskampie/5230f201d22d76bbd6b0db6f07692ba7 to your computer and use it in GitHub Desktop.
Automatically deserialize doctrine entities when using Symfony Serializer
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php declare (strict_types = 1); | |
namespace App\Normalizer; | |
use Doctrine\ORM\EntityManagerInterface; | |
use Symfony\Component\Serializer\Normalizer\DenormalizerInterface; | |
/** | |
* Entity normalizer | |
*/ | |
class EntityNormalizer implements DenormalizerInterface | |
{ | |
/** @var EntityManagerInterface **/ | |
protected $em; | |
public function __construct(EntityManagerInterface $em) | |
{ | |
$this->em = $em; | |
} | |
/** | |
* @inheritDoc | |
*/ | |
public function supportsDenormalization($data, $type, $format = null) | |
{ | |
return strpos($type, 'App\\Entity\\') === 0 && (is_numeric($data)); | |
} | |
/** | |
* @inheritDoc | |
*/ | |
public function denormalize($data, $class, $format = null, array $context = []) | |
{ | |
return $this->em->find($class, $data); | |
} | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
services: | |
App\Normalizer\EntityNormalizer: | |
public: false | |
autowire: true | |
autoconfigure: true | |
tags: [serializer.normalizer] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Thanks!!! Works great!