Skip to content

Commit

Permalink
chore: apply php-cs-fixer 3.63.1 change
Browse files Browse the repository at this point in the history
  • Loading branch information
phil-davis committed Aug 27, 2024
1 parent 2a700a0 commit 98ba54d
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion tests/Sabre/Xml/WriterTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@

namespace Sabre\Xml;

use Sabre\Xml\Element\KeyValue;

class WriterTest extends \PHPUnit\Framework\TestCase
{
protected $writer;
Expand Down Expand Up @@ -324,7 +326,7 @@ public function testWriteElement()

public function testWriteElementComplex()
{
$this->writer->writeElement('{http://sabredav.org/ns}foo', new Element\KeyValue(['{http://sabredav.org/ns}bar' => 'test']));
$this->writer->writeElement('{http://sabredav.org/ns}foo', new KeyValue(['{http://sabredav.org/ns}bar' => 'test']));

$output = <<<HI
<?xml version="1.0"?>
Expand Down

0 comments on commit 98ba54d

Please sign in to comment.