============================== Rule ``curly_braces_position`` ============================== Curly braces must be placed as configured. Warning ------- This rule is deprecated and will be removed in the next major version ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ You should use ``braces_position`` instead. Configuration ------------- ``allow_single_line_anonymous_functions`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Allow anonymous functions to have opening and closing braces on the same line. Allowed types: ``bool`` Default value: ``true`` ``allow_single_line_empty_anonymous_classes`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Allow anonymous classes to have opening and closing braces on the same line. Allowed types: ``bool`` Default value: ``true`` ``anonymous_classes_opening_brace`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The position of the opening brace of anonymous classes‘ body. Allowed values: ``'next_line_unless_newline_at_signature_end'`` and ``'same_line'`` Default value: ``'same_line'`` ``anonymous_functions_opening_brace`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The position of the opening brace of anonymous functions‘ body. Allowed values: ``'next_line_unless_newline_at_signature_end'`` and ``'same_line'`` Default value: ``'same_line'`` ``classes_opening_brace`` ~~~~~~~~~~~~~~~~~~~~~~~~~ The position of the opening brace of classes‘ body. Allowed values: ``'next_line_unless_newline_at_signature_end'`` and ``'same_line'`` Default value: ``'next_line_unless_newline_at_signature_end'`` ``control_structures_opening_brace`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ The position of the opening brace of control structures‘ body. Allowed values: ``'next_line_unless_newline_at_signature_end'`` and ``'same_line'`` Default value: ``'same_line'`` ``functions_opening_brace`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~ The position of the opening brace of functions‘ body. Allowed values: ``'next_line_unless_newline_at_signature_end'`` and ``'same_line'`` Default value: ``'next_line_unless_newline_at_signature_end'`` Examples -------- Example #1 ~~~~~~~~~~ *Default* configuration. .. code-block:: diff --- Original +++ New 'next_line_unless_newline_at_signature_end']``. .. code-block:: diff --- Original +++ New 'same_line']``. .. code-block:: diff --- Original +++ New 'next_line_unless_newline_at_signature_end']``. .. code-block:: diff --- Original +++ New 'same_line']``. .. code-block:: diff --- Original +++ New 'next_line_unless_newline_at_signature_end']``. .. code-block:: diff --- Original +++ New true]``. .. code-block:: diff --- Original +++ New true]``. .. code-block:: diff --- Original +++ New `_ - Test class: `PhpCsFixer\\Tests\\Fixer\\Basic\\CurlyBracesPositionFixerTest <./../../../tests/Fixer/Basic/CurlyBracesPositionFixerTest.php>`_ The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.