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