======================== Rule ``increment_style`` ======================== Pre- or post-increment and decrement operators should be used if possible. Configuration ------------- ``style`` ~~~~~~~~~ Whether to use pre- or post-increment and decrement operators. Allowed values: ``'post'`` and ``'pre'`` Default value: ``'pre'`` Examples -------- Example #1 ~~~~~~~~~~ *Default* configuration. .. code-block:: diff --- Original +++ New 'post']``. .. code-block:: diff --- Original +++ New `_ - `@Symfony <./../../ruleSets/Symfony.rst>`_ References ---------- - Fixer class: `PhpCsFixer\\Fixer\\Operator\\IncrementStyleFixer <./../../../src/Fixer/Operator/IncrementStyleFixer.php>`_ - Test class: `PhpCsFixer\\Tests\\Fixer\\Operator\\IncrementStyleFixerTest <./../../../tests/Fixer/Operator/IncrementStyleFixerTest.php>`_ The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.