============================= Rule ``new_with_parentheses`` ============================= All instances created with ``new`` keyword must (not) be followed by parentheses. Configuration ------------- ``anonymous_class`` ~~~~~~~~~~~~~~~~~~~ Whether anonymous classes should be followed by parentheses. Allowed types: ``bool`` Default value: ``true`` ``named_class`` ~~~~~~~~~~~~~~~ Whether named classes should be followed by parentheses. Allowed types: ``bool`` Default value: ``true`` Examples -------- Example #1 ~~~~~~~~~~ *Default* configuration. .. code-block:: diff --- Original +++ New false]``. .. code-block:: diff --- Original +++ New false]``. .. code-block:: diff --- Original +++ New `_ with config: ``['anonymous_class' => false]`` - `@PER-CS <./../../ruleSets/PER-CS.rst>`_ with config: ``['anonymous_class' => false]`` - `@PER-CS1.0 <./../../ruleSets/PER-CS1.0.rst>`_ - `@PER-CS2.0 <./../../ruleSets/PER-CS2.0.rst>`_ with config: ``['anonymous_class' => false]`` - `@PSR12 <./../../ruleSets/PSR12.rst>`_ - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_ with config: ``['anonymous_class' => false]`` - `@Symfony <./../../ruleSets/Symfony.rst>`_ with config: ``['anonymous_class' => false]`` References ---------- - Fixer class: `PhpCsFixer\\Fixer\\Operator\\NewWithParenthesesFixer <./../../../src/Fixer/Operator/NewWithParenthesesFixer.php>`_ - Test class: `PhpCsFixer\\Tests\\Fixer\\Operator\\NewWithParenthesesFixerTest <./../../../tests/Fixer/Operator/NewWithParenthesesFixerTest.php>`_ The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.