123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109 |
- ==========================
- Rule ``phpdoc_to_comment``
- ==========================
- Docblocks should only be used on structural elements.
- Configuration
- -------------
- ``allow_before_return_statement``
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Whether to allow PHPDoc before return statement.
- Allowed types: ``bool``
- Default value: ``false``
- ``ignored_tags``
- ~~~~~~~~~~~~~~~~
- List of ignored tags (matched case insensitively).
- Allowed types: ``list<string>``
- Default value: ``[]``
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- *Default* configuration.
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- $first = true;// needed because by default first docblock is never fixed.
- -/** This should be a comment */
- +/* This should be a comment */
- foreach($connections as $key => $sqlite) {
- $sqlite->open($path);
- }
- Example #2
- ~~~~~~~~~~
- With configuration: ``['ignored_tags' => ['todo']]``.
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- $first = true;// needed because by default first docblock is never fixed.
- -/** This should be a comment */
- +/* This should be a comment */
- foreach($connections as $key => $sqlite) {
- $sqlite->open($path);
- }
- /** @todo This should be a PHPDoc as the tag is on "ignored_tags" list */
- foreach($connections as $key => $sqlite) {
- $sqlite->open($path);
- }
- Example #3
- ~~~~~~~~~~
- With configuration: ``['allow_before_return_statement' => true]``.
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- $first = true;// needed because by default first docblock is never fixed.
- -/** This should be a comment */
- +/* This should be a comment */
- foreach($connections as $key => $sqlite) {
- $sqlite->open($path);
- }
- function returnClassName() {
- /** @var class-string */
- return \StdClass::class;
- }
- Rule sets
- ---------
- The rule is part of the following rule sets:
- - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
- - `@Symfony <./../../ruleSets/Symfony.rst>`_
- References
- ----------
- - Fixer class: `PhpCsFixer\\Fixer\\Phpdoc\\PhpdocToCommentFixer <./../../../src/Fixer/Phpdoc/PhpdocToCommentFixer.php>`_
- - Test class: `PhpCsFixer\\Tests\\Fixer\\Phpdoc\\PhpdocToCommentFixerTest <./../../../tests/Fixer/Phpdoc/PhpdocToCommentFixerTest.php>`_
- The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.
|