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

  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.     public function encode(mixed $datastring $format, array $context = []): string
  31.     {
  32.         $context array_merge($this->defaultContext$context);
  33.         return $this->encodingImpl->encode($dataself::FORMAT$context);
  34.     }
  35.     public function decode(string $datastring $format, array $context = []): mixed
  36.     {
  37.         $context array_merge($this->defaultContext$context);
  38.         return $this->decodingImpl->decode($dataself::FORMAT$context);
  39.     }
  40.     public function supportsEncoding(string $format): bool
  41.     {
  42.         return self::FORMAT === $format;
  43.     }
  44.     public function supportsDecoding(string $format): bool
  45.     {
  46.         return self::FORMAT === $format;
  47.     }
  48. }