Skip to content

Commit 37c7484

Browse files
Merge branch '6.2' into 6.3
* 6.2: [FrameworkBundle] Fix registering ExpressionValidator Bump Symfony version to 6.2.9 Update VERSION for 6.2.8 Update CHANGELOG for 6.2.8 Bump Symfony version to 5.4.23 Update VERSION for 5.4.22 Update CONTRIBUTORS for 5.4.22 Update CHANGELOG for 5.4.22 [Form] CollectionType apply prototypeOptions to ResizeFormListener new fields [FrameworkBundle] Fix services usages output for text descriptor
2 parents 2b1babf + df1899b commit 37c7484

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

Console/Descriptor/TextDescriptor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -359,7 +359,7 @@ protected function describeContainerDefinition(Definition $definition, array $op
359359
}
360360

361361
$inEdges = null !== $builder && isset($options['id']) ? $this->getServiceEdges($builder, $options['id']) : [];
362-
$tableRows[] = ['Usages', $inEdges ? implode(', ', $inEdges) : 'none'];
362+
$tableRows[] = ['Usages', $inEdges ? implode(\PHP_EOL, $inEdges) : 'none'];
363363

364364
$options['output']->table($tableHeaders, $tableRows);
365365
}

Resources/config/validator.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,9 @@
7676

7777
->set('validator.expression', ExpressionValidator::class)
7878
->args([service('validator.expression_language')->nullOnInvalid()])
79-
->tag('validator.constraint_validator')
79+
->tag('validator.constraint_validator', [
80+
'alias' => 'validator.expression',
81+
])
8082

8183
->set('validator.expression_language', ExpressionLanguage::class)
8284
->args([service('cache.validator_expression_language')->nullOnInvalid()])

0 commit comments

Comments
 (0)