=========================== Rule ``no_unneeded_braces`` =========================== Removes unneeded braces that are superfluous and aren't part of a control structure's body. Configuration ------------- ``namespaces`` ~~~~~~~~~~~~~~ Remove unneeded braces from bracketed namespaces. Allowed types: ``bool`` Default value: ``false`` Examples -------- Example #1 ~~~~~~~~~~ *Default* configuration. .. code-block:: diff --- Original +++ New - true]``. .. code-block:: diff --- Original +++ New `_ with config: ``['namespaces' => true]`` - `@Symfony <./../../ruleSets/Symfony.rst>`_ with config: ``['namespaces' => true]`` References ---------- - Fixer class: `PhpCsFixer\\Fixer\\ControlStructure\\NoUnneededBracesFixer <./../../../src/Fixer/ControlStructure/NoUnneededBracesFixer.php>`_ - Test class: `PhpCsFixer\\Tests\\Fixer\\ControlStructure\\NoUnneededBracesFixerTest <./../../../tests/Fixer/ControlStructure/NoUnneededBracesFixerTest.php>`_ The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.