1234567891011121314151617181920212223242526272829303132333435363738394041 |
- <?php
- namespace Symfony\Component\Serializer\Encoder;
- use Symfony\Component\Serializer\SerializerInterface;
- /*
- * This file is part of the Symfony framework.
- *
- * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
- *
- * This source file is subject to the MIT license that is bundled
- * with this source code in the file LICENSE.
- */
- /**
- * Encodes JSON data
- *
- * @author Jordi Boggiano <j.boggiano@seld.be>
- */
- class JsonEncoder extends AbstractEncoder implements EncoderInterface
- {
- /**
- * {@inheritdoc}
- */
- public function encode($data, $format)
- {
- if (!is_scalar($data)) {
- $data = $this->serializer->normalize($data, $format);
- }
- return json_encode($data);
- }
- /**
- * {@inheritdoc}
- */
- public function decode($data, $format)
- {
- return json_decode($data, true);
- }
- }
|