Skip to content

Commit

Permalink
Make @var occurrences consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
alexandre-daubois committed Oct 2, 2024
1 parent ad6afe4 commit 0df8534
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Extension/Validator/ValidatorExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public function __construct(
// the DIC, where the XML file is loaded automatically. Thus the following
// code must be kept synchronized with validation.xml

/* @var $metadata ClassMetadata */
/* @var ClassMetadata $metadata */
$metadata->addConstraint(new Form());
$metadata->addConstraint(new Traverse(false));
}
Expand Down
2 changes: 1 addition & 1 deletion FormBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ public function count(): int

public function getFormConfig(): FormConfigInterface
{
/** @var $config self */
/** @var self $config */
$config = parent::getFormConfig();

$config->children = [];
Expand Down

0 comments on commit 0df8534

Please sign in to comment.