Skip to content

Commit

Permalink
fixup! refactor: Change class strings to ::class constants
Browse files Browse the repository at this point in the history
Signed-off-by: Christoph Wurst <[email protected]>
  • Loading branch information
ChristophWurst committed Sep 16, 2024
1 parent bc0b0ad commit 4725576
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,8 @@
"monolog/monolog": "^2.9",
"phpstan/phpstan": "^1.11",
"phpstan/phpstan-phpunit": "^1.4",
"phpunit/phpunit": "^9.6"
"phpunit/phpunit": "^9.6",
"rector/rector": "^1.2"
},
"suggest" : {
"ext-curl" : "*",
Expand Down
2 changes: 1 addition & 1 deletion tests/Sabre/DAVACL/Xml/Property/ACLTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class ACLTest extends \PHPUnit\Framework\TestCase
public function testConstruct()
{
$acl = new Acl([]);
self::assertInstanceOf(\Sabre\DAVACL\Xml\Property\ACL::class, $acl);
self::assertInstanceOf(\Sabre\DAVACL\Xml\Property\Acl::class, $acl);
}

public function testSerializeEmpty()
Expand Down

0 comments on commit 4725576

Please sign in to comment.