
phpdoc_to_comment
¶Docblocks should only be used on structural elements.
--- Original
+++ New
@@ -1,7 +1,7 @@
<?php
$first = true;// needed because by default first docblock is never fixed.
-/** This should not be a docblock */
+/* This should not be a docblock */
foreach($connections as $key => $sqlite) {
$sqlite->open($path);
}
The rule is part of the following rule sets:
Using the @PhpCsFixer rule set will enable the phpdoc_to_comment
rule.
Using the @Symfony rule set will enable the phpdoc_to_comment
rule.