HandlerCallback.php 331 B

123456789101112131415161718192021222324
  1. <?php
  2. namespace JMS\SerializerBundle\Annotation;
  3. /**
  4. * @Annotation
  5. * @Target("METHOD")
  6. *
  7. * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  8. */
  9. final class HandlerCallback
  10. {
  11. /**
  12. * @Required
  13. * @var string
  14. */
  15. public $format;
  16. /**
  17. * @Required
  18. * @var string
  19. */
  20. public $direction;
  21. }