1<?php
2
3declare(strict_types=1);
4
5namespace JMS\Serializer\Tests\Fixtures;
6
7use JMS\Serializer\Annotation\Type;
8use JMS\Serializer\Annotation\XmlElement;
9use JMS\Serializer\Annotation\XmlNamespace;
10
11/**
12 * @XmlNamespace(prefix="old_foo", uri="http://foo.example.org");
13 * @XmlNamespace(prefix="foo", uri="http://better.foo.example.org");
14 */
15class SimpleSubClassObject extends SimpleClassObject
16{
17    /**
18     * @Type("string")
19     * @XmlElement(namespace="http://better.foo.example.org")
20     */
21    public $moo;
22
23    /**
24     * @Type("string")
25     * @XmlElement(namespace="http://foo.example.org")
26     */
27    public $baz;
28
29    /**
30     * @Type("string")
31     * @XmlElement(namespace="http://new.foo.example.org")
32     */
33    public $qux;
34}
35