1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- ===============================
- Rule ``heredoc_closing_marker``
- ===============================
- Unify ``heredoc`` or ``nowdoc`` closing marker.
- Configuration
- -------------
- ``closing_marker``
- ~~~~~~~~~~~~~~~~~~
- Preferred closing marker.
- Allowed types: ``string``
- Default value: ``'EOD'``
- ``explicit_heredoc_style``
- ~~~~~~~~~~~~~~~~~~~~~~~~~~
- Whether the closing marker should be wrapped in double quotes.
- Allowed types: ``bool``
- Default value: ``false``
- ``reserved_closing_markers``
- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~
- Reserved closing markers to be kept unchanged.
- Allowed types: ``list<string>``
- Default value: ``['CSS', 'DIFF', 'HTML', 'JS', 'JSON', 'MD', 'PHP', 'PYTHON', 'RST', 'TS', 'SQL', 'XML', 'YAML']``
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- *Default* configuration.
- .. code-block:: diff
- --- Original
- +++ New
- -<?php $a = <<<"TEST"
- +<?php $a = <<<EOD
- Foo
- -TEST;
- +EOD;
- Example #2
- ~~~~~~~~~~
- With configuration: ``['closing_marker' => 'EOF']``.
- .. code-block:: diff
- --- Original
- +++ New
- -<?php $a = <<<'TEST'
- +<?php $a = <<<'EOF'
- Foo
- -TEST;
- +EOF;
- Example #3
- ~~~~~~~~~~
- With configuration: ``['explicit_heredoc_style' => true]``.
- .. code-block:: diff
- --- Original
- +++ New
- -<?php $a = <<<EOD
- +<?php $a = <<<"EOD"
- Foo
- EOD;
- References
- ----------
- - Fixer class: `PhpCsFixer\\Fixer\\StringNotation\\HeredocClosingMarkerFixer <./../../../src/Fixer/StringNotation/HeredocClosingMarkerFixer.php>`_
- - Test class: `PhpCsFixer\\Tests\\Fixer\\StringNotation\\HeredocClosingMarkerFixerTest <./../../../tests/Fixer/StringNotation/HeredocClosingMarkerFixerTest.php>`_
- The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.
|