123456789101112131415161718 |
- <?php
- namespace JMS\SerializerBundle\Annotation;
- /**
- * @Annotation
- * @Target({"CLASS", "PROPERTY"})
- *
- * @author Johannes M. Schmitt <schmittjoh@gmail.com>
- */
- final class AccessType
- {
- /**
- * @Required
- * @var string
- */
- public $type;
- }
|