Each line of multi-line DocComments must have an asterisk [PSR-5] and must be aligned with the first one.
Whether to fix PHPDoc comments only (phpdocs_only
), any multi-line comment
whose lines all start with an asterisk (phpdocs_like
) or any multi-line
comment (all_multiline
).
Allowed values: 'all_multiline'
, 'phpdocs_like'
, 'phpdocs_only'
Default value: 'phpdocs_only'
Default configuration.
--- Original
+++ New
@@ -1,6 +1,6 @@
<?php
/**
- * This is a DOC Comment
-with a line not prefixed with asterisk
-
- */
+ * This is a DOC Comment
+ * with a line not prefixed with asterisk
+ *
+ */
With configuration: ['comment_type' => 'phpdocs_like']
.
--- Original
+++ New
@@ -1,4 +1,4 @@
<?php
/*
- * This is a doc-like multiline comment
-*/
+ * This is a doc-like multiline comment
+ */
With configuration: ['comment_type' => 'all_multiline']
.
--- Original
+++ New
@@ -1,6 +1,6 @@
<?php
/*
- * This is a doc-like multiline comment
+ * This is a doc-like multiline comment
with a line not prefixed with asterisk
- */
+ */
The rule is part of the following rule set:
- @PhpCsFixer
- Using the @PhpCsFixer rule set will enable the
align_multiline_comment
rule with the default config.