move DenormalizerAwareInterface and NormalizerAwareInterface from the interface to the class

This commit is contained in:
nobohan
2022-02-22 11:05:18 +01:00
parent 2618003177
commit 665027085d
2 changed files with 1 additions and 7 deletions

View File

@@ -11,18 +11,14 @@ declare(strict_types=1);
namespace Chill\PersonBundle\Serializer\Normalizer;
use Symfony\Component\Serializer\Normalizer\DenormalizerAwareInterface;
use Symfony\Component\Serializer\Normalizer\DenormalizerInterface;
use Symfony\Component\Serializer\Normalizer\NormalizerAwareInterface;
use Symfony\Component\Serializer\Normalizer\NormalizerInterface;
/**
* Serialize a Person entity.
*/
interface PersonJsonNormalizerInterface extends
DenormalizerAwareInterface,
DenormalizerInterface,
NormalizerAwareInterface,
NormalizerInterface
{
public function denormalize($data, $type, $format = null, array $context = []);