EncoderInterface.php 221 B

1234567891011
  1. <?php
  2. namespace JMS\SerializerBundle\Serializer\Encoder;
  3. interface EncoderInterface
  4. {
  5. function encode($data);
  6. function decode($data);
  7. function supportsEncoding($data);
  8. function supportsDecoding($data);
  9. }