Skip to content

Commit ffdf160

Browse files
committed
cleanup
1 parent 48509f0 commit ffdf160

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# 7.0.0
2+
- Add SF 7 support
3+
- Upgrade dev & qa tooling
4+
15
# 6.0.0
26
- Add SF 6 support
37
- Require PHP 8.1

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
"@phpcs",
4545
"@phpmd",
4646
"@test",
47-
"@audit"
47+
"@composer audit"
4848
],
4949
"composer-validate": "./ci/qa/validate",
5050
"phplint": "./ci/qa/phplint",

src/Tests/Component/Metadata/MetadataFactoryTest.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,6 @@ public function setUp(): void
5959
$this->xsdValidator = new XsdValidator();
6060
}
6161

62-
/**
63-
* Helper method to assert XML document is valid against XSD schema
64-
*/
6562
private function assertXmlIsValidAgainstXsd(DOMDocument $document, string $xsdPath): void
6663
{
6764
$errors = $this->xsdValidator->validate($document, $xsdPath);

src/Tests/Component/Metadata/XsdValidator.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,6 @@
2020

2121
use DOMDocument;
2222

23-
/**
24-
* Validates XML documents against XSD schemas
25-
*/
2623
class XsdValidator
2724
{
2825
/**

0 commit comments

Comments
 (0)