Rule phpdoc_single_line_var_spacing
¶
Single line @var
PHPDoc should have proper spacing.
Examples¶
Example #1¶
--- Original
+++ New
-<?php /**@var MyClass $a */
+<?php /** @var MyClass $a */
$a = test();
Rule sets¶
The rule is part of the following rule sets:
References¶
Fixer class: PhpCsFixer\Fixer\Phpdoc\PhpdocSingleLineVarSpacingFixer
Test class: PhpCsFixer\Tests\Fixer\Phpdoc\PhpdocSingleLineVarSpacingFixerTest
The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.