1<?php
2
3declare(strict_types=1);
4
5namespace JMS\Serializer\Tests\Fixtures;
6
7use JMS\Serializer\Annotation\Type;
8
9class InlineChild
10{
11    /**
12     * @Type("string")
13     */
14    public $a = 'a';
15
16    /**
17     * @Type("string")
18     */
19    public $b = 'b';
20}
21