Skip to content

Commit 98ba54d

Browse files
committed
chore: apply php-cs-fixer 3.63.1 change
1 parent 2a700a0 commit 98ba54d

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/Sabre/Xml/WriterTest.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
namespace Sabre\Xml;
66

7+
use Sabre\Xml\Element\KeyValue;
8+
79
class WriterTest extends \PHPUnit\Framework\TestCase
810
{
911
protected $writer;
@@ -324,7 +326,7 @@ public function testWriteElement()
324326

325327
public function testWriteElementComplex()
326328
{
327-
$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']));
328330

329331
$output = <<<HI
330332
<?xml version="1.0"?>

0 commit comments

Comments
 (0)