AccessType.php 261 B

123456789101112131415161718
  1. <?php
  2. namespace JMS\SerializerBundle\Annotation;
  3. /**
  4. * @Annotation
  5. * @Target({"CLASS", "PROPERTY"})
  6. *
  7. * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  8. */
  9. final class AccessType
  10. {
  11. /**
  12. * @Required
  13. * @var string
  14. */
  15. public $type;
  16. }