Skip to content

Commit 0df8534

Browse files
committedOct 2, 2024
Make @var occurrences consistent
1 parent ad6afe4 commit 0df8534

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed
 

‎Extension/Validator/ValidatorExtension.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ public function __construct(
4040
// the DIC, where the XML file is loaded automatically. Thus the following
4141
// code must be kept synchronized with validation.xml
4242

43-
/* @var $metadata ClassMetadata */
43+
/* @var ClassMetadata $metadata */
4444
$metadata->addConstraint(new Form());
4545
$metadata->addConstraint(new Traverse(false));
4646
}

‎FormBuilder.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ public function count(): int
142142

143143
public function getFormConfig(): FormConfigInterface
144144
{
145-
/** @var $config self */
145+
/** @var self $config */
146146
$config = parent::getFormConfig();
147147

148148
$config->children = [];

0 commit comments

Comments
 (0)
Please sign in to comment.