1<?php
2
3declare(strict_types=1);
4
5namespace JMS\Serializer\Annotation;
6
7/**
8 * @Annotation
9 * @Target({"PROPERTY", "METHOD","ANNOTATION"})
10 */
11final class Type
12{
13    /**
14     * @Required
15     * @var string
16     */
17    public $name;
18}
19