Skip to content

Commit c6b23da

Browse files
committed
apply latest php-cs-fixer rules
1 parent e24912e commit c6b23da

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

src/PHPCR/Util/CND/Parser/CndParser.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -595,7 +595,7 @@ private function parseChildNodeDef(NodeTypeTemplateInterface $nodeType): void
595595
*/
596596
private function parseChildNodeAttributes(
597597
NodeTypeTemplateInterface $parentType,
598-
NodeDefinitionTemplateInterface $childType
598+
NodeDefinitionTemplateInterface $childType,
599599
): void {
600600
while (true) {
601601
if ($this->checkTokenIn(Token::TK_IDENTIFIER, $this->PRIMARY)) {

src/PHPCR/Util/CND/Scanner/Token.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ public function __construct(
2222
*/
2323
private string $data = '',
2424
private int $line = 0,
25-
private int $row = 0
25+
private int $row = 0,
2626
) {
2727
}
2828

src/PHPCR/Util/CND/Writer/CndWriter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ class CndWriter
3333
private array $namespaces = [];
3434

3535
public function __construct(
36-
private NamespaceRegistryInterface $ns
36+
private NamespaceRegistryInterface $ns,
3737
) {
3838
}
3939

src/PHPCR/Util/Console/Helper/TreeDumper/ConsoleDumperItemVisitor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ abstract class ConsoleDumperItemVisitor implements ItemVisitorInterface
2020
protected int $level = 0;
2121

2222
public function __construct(
23-
protected OutputInterface $output
23+
protected OutputInterface $output,
2424
) {
2525
}
2626

src/PHPCR/Util/QOM/QueryBuilder.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ class QueryBuilder
6868
private array $params = [];
6969

7070
public function __construct(
71-
private QueryObjectModelFactoryInterface $qomFactory
71+
private QueryObjectModelFactoryInterface $qomFactory,
7272
) {
7373
}
7474

0 commit comments

Comments
 (0)