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 2a700a0 commit 98ba54dCopy full SHA for 98ba54d
tests/Sabre/Xml/WriterTest.php
@@ -4,6 +4,8 @@
4
5
namespace Sabre\Xml;
6
7
+use Sabre\Xml\Element\KeyValue;
8
+
9
class WriterTest extends \PHPUnit\Framework\TestCase
10
{
11
protected $writer;
@@ -324,7 +326,7 @@ public function testWriteElement()
324
326
325
327
public function testWriteElementComplex()
328
- $this->writer->writeElement('{http://sabredav.org/ns}foo', new Element\KeyValue(['{http://sabredav.org/ns}bar' => 'test']));
329
+ $this->writer->writeElement('{http://sabredav.org/ns}foo', new KeyValue(['{http://sabredav.org/ns}bar' => 'test']));
330
331
$output = <<<HI
332
<?xml version="1.0"?>
0 commit comments