Skip to content

Commit f66345b

Browse files
committed
style: fix @var annotation format for PHP 7.4 compatibility
Change @var annotation from "$rule ArchRule" to "ArchRule $rule" to follow correct PHPDoc format.
1 parent d11c072 commit f66345b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/PHPUnit/ArchRuleCheckerConstraintAdapter.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ public function toString(): string
6060
}
6161

6262
protected function matches(
63-
/** @var $rule ArchRule */
63+
/** @var ArchRule $rule */
6464
$other
6565
): bool {
6666
$this->runner->check(

0 commit comments

Comments
 (0)