Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 714 Bytes

phpdoc_single_line_var_spacing.rst

File metadata and controls

31 lines (22 loc) · 714 Bytes

Rule phpdoc_single_line_var_spacing

Single line @var PHPDoc should have proper spacing.

Examples

Example #1

--- Original
+++ New
@@ -1,2 +1,2 @@
-<?php /**@var   MyClass   $a   */
+<?php /** @var MyClass $a */
 $a = test();

Rule sets

The rule is part of the following rule sets:

@PhpCsFixer
Using the @PhpCsFixer rule set will enable the phpdoc_single_line_var_spacing rule.
@Symfony
Using the @Symfony rule set will enable the phpdoc_single_line_var_spacing rule.