1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- <?php
- namespace JMS\Serializer\Tests\Fixtures;
- use JMS\Serializer\Annotation\Type;
- use JMS\Serializer\Annotation\XmlAttribute;
- use JMS\Serializer\Annotation\XmlRoot;
- /**
- * @XmlRoot("test-object", namespace="http://example.com/namespace")
- */
- class ObjectWithXmlRootNamespace
- {
- /**
- * @Type("string")
- */
- private $title;
- /**
- * @Type("DateTime")
- * @XmlAttribute
- */
- private $createdAt;
- /**
- * @Type("string")
- * @XmlAttribute
- */
- private $etag;
- /**
- * @Type("string")
- */
- private $author;
- /**
- * @Type("string")
- * @XmlAttribute
- */
- private $language;
- public function __construct($title, $author, \DateTime $createdAt, $language)
- {
- $this->title = $title;
- $this->author = $author;
- $this->createdAt = $createdAt;
- $this->language = $language;
- $this->etag = sha1($this->createdAt->format(\DateTime::ISO8601));
- }
- }
|