Skip to content

Commit

Permalink
Merge pull request #292 from phil-davis/prepare-2.2.10
Browse files Browse the repository at this point in the history
chore: prepare release 2.2.10
  • Loading branch information
phil-davis authored Aug 27, 2024
2 parents 8366747 + 98ba54d commit 0734b7a
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
ChangeLog
=========

2.2.10 (2024-08-27)
------------------
* #290 add cs-fixer v3 (@phil-davis)

2.2.9 (2024-07-26)
------------------
* #287 Explicitly mark nullable parameter (@cedric-anne)
Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.17.1||3.60",
"friendsofphp/php-cs-fixer": "~2.17.1||^3.63",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit" : "^7.5 || ^8.5 || ^9.6"
},
Expand Down
2 changes: 1 addition & 1 deletion lib/Version.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ class Version
/**
* Full version number.
*/
public const VERSION = '2.2.9';
public const VERSION = '2.2.10';
}
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 0734b7a

Please sign in to comment.