We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0541777 commit e709aa5Copy full SHA for e709aa5
ChangeLog
@@ -1,6 +1,7 @@
1
0.0.5-alpha (2013-??-??)
2
* Added: baseUri property to the Writer class.
3
* Added: The writeElement method can now write complex elements.
4
+ * Added: Throwing exception when invalid objects are written.
5
6
0.0.4-alpha (2013-03-14)
7
* Fixed: The KeyValue parser was skipping over elements when there was no
tests/Sabre/XML/WriterTest.php
@@ -210,7 +210,7 @@ function testWriteElementComplex() {
210
*/
211
function testWriteBadObject() {
212
213
- $this->writer->write(new StdClass());
+ $this->writer->write(new \StdClass());
214
215
}
216
0 commit comments