12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879 |
- ===========================
- Rule ``operator_linebreak``
- ===========================
- Operators - when multiline - must always be at the beginning or at the end of
- the line.
- Configuration
- -------------
- ``only_booleans``
- ~~~~~~~~~~~~~~~~~
- Whether to limit operators to only boolean ones.
- Allowed types: ``bool``
- Default value: ``false``
- ``position``
- ~~~~~~~~~~~~
- Whether to place operators at the beginning or at the end of the line.
- Allowed values: ``'beginning'`` and ``'end'``
- Default value: ``'beginning'``
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- *Default* configuration.
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- function foo() {
- - return $bar ||
- - $baz;
- + return $bar
- + || $baz;
- }
- Example #2
- ~~~~~~~~~~
- With configuration: ``['position' => 'end']``.
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- function foo() {
- - return $bar
- - || $baz;
- + return $bar ||
- + $baz;
- }
- Rule sets
- ---------
- The rule is part of the following rule sets:
- - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_ with config:
- ``['only_booleans' => true]``
- - `@Symfony <./../../ruleSets/Symfony.rst>`_ with config:
- ``['only_booleans' => true]``
|