1234567891011121314151617181920212223242526 |
- <?php
- namespace JMS\Serializer\Tests\Fixtures;
- use JMS\Serializer\Annotation\Type;
- use JMS\Serializer\Annotation\XmlAttribute;
- use JMS\Serializer\Annotation\XmlRoot;
- use JMS\Serializer\Annotation\XmlValue;
- /**
- * @XmlRoot("child")
- */
- class Person
- {
- /**
- * @Type("string")
- * @XmlValue(cdata=false)
- */
- public $name;
- /**
- * @Type("int")
- * @XmlAttribute
- */
- public $age;
- }
|