1234567891011121314151617181920212223242526 |
- <?php
- namespace JMS\SerializerBundle\Serializer\Encoder;
- class JsonEncoder implements EncoderInterface
- {
- public function encode($data)
- {
- return json_encode($data);
- }
- public function decode($data)
- {
- return json_decode($data, true);
- }
- public function supportsEncoding($data)
- {
- return true;
- }
- public function supportsDecoding($data)
- {
- return false;
- }
- }
|