Skip to content

Commit 99ca424

Browse files
committed
Fix @var phpdoc
1 parent fb827b0 commit 99ca424

File tree

3 files changed

+55
-55
lines changed

3 files changed

+55
-55
lines changed

Constraints/Composite.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public function __construct(mixed $options = null, ?array $groups = null, mixed
5555

5656
$this->initializeNestedConstraints();
5757

58-
/* @var Constraint[] $nestedConstraints */
58+
/** @var Constraint[] $nestedConstraints */
5959
$compositeOption = $this->getCompositeOption();
6060
$nestedConstraints = $this->$compositeOption;
6161

@@ -137,7 +137,7 @@ abstract protected function getCompositeOption(): string;
137137
*/
138138
public function getNestedConstraints(): array
139139
{
140-
/* @var Constraint[] $nestedConstraints */
140+
/** @var Constraint[] $nestedConstraints */
141141
return $this->{$this->getCompositeOption()};
142142
}
143143

0 commit comments

Comments
 (0)