vendor/symfony/serializer/Encoder/JsonEncoder.php line 40

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file is part of the Symfony package.
  4.  *
  5.  * (c) Fabien Potencier <fabien@symfony.com>
  6.  *
  7.  * For the full copyright and license information, please view the LICENSE
  8.  * file that was distributed with this source code.
  9.  */
  10. namespace Symfony\Component\Serializer\Encoder;
  11. /**
  12.  * Encodes JSON data.
  13.  *
  14.  * @author Jordi Boggiano <j.boggiano@seld.be>
  15.  */
  16. class JsonEncoder implements EncoderInterfaceDecoderInterface
  17. {
  18.     public const FORMAT 'json';
  19.     protected $encodingImpl;
  20.     protected $decodingImpl;
  21.     private $defaultContext = [
  22.         JsonDecode::ASSOCIATIVE => true,
  23.     ];
  24.     public function __construct(JsonEncode $encodingImpl nullJsonDecode $decodingImpl null, array $defaultContext = [])
  25.     {
  26.         $this->defaultContext array_merge($this->defaultContext$defaultContext);
  27.         $this->encodingImpl $encodingImpl ?? new JsonEncode($this->defaultContext);
  28.         $this->decodingImpl $decodingImpl ?? new JsonDecode($this->defaultContext);
  29.     }
  30.     /**
  31.      * {@inheritdoc}
  32.      */
  33.     public function encode(mixed $datastring $format, array $context = []): string
  34.     {
  35.         $context array_merge($this->defaultContext$context);
  36.         return $this->encodingImpl->encode($dataself::FORMAT$context);
  37.     }
  38.     /**
  39.      * {@inheritdoc}
  40.      */
  41.     public function decode(string $datastring $format, array $context = []): mixed
  42.     {
  43.         $context array_merge($this->defaultContext$context);
  44.         return $this->decodingImpl->decode($dataself::FORMAT$context);
  45.     }
  46.     /**
  47.      * {@inheritdoc}
  48.      */
  49.     public function supportsEncoding(string $format): bool
  50.     {
  51.         return self::FORMAT === $format;
  52.     }
  53.     /**
  54.      * {@inheritdoc}
  55.      */
  56.     public function supportsDecoding(string $format): bool
  57.     {
  58.         return self::FORMAT === $format;
  59.     }
  60. }