1<?php
2
3declare(strict_types=1);
4
5namespace JMS\Serializer\Tests\Fixtures;
6
7use JMS\Serializer\Annotation\Type;
8use JMS\Serializer\Annotation\XmlRoot;
9
10/**
11 * @XmlRoot("person_location")
12 */
13class PersonLocation
14{
15    /**
16     * @Type("JMS\Serializer\Tests\Fixtures\Person")
17     */
18    public $person;
19
20    /**
21     * @Type("string")
22     */
23    public $location;
24}
25