==================================== Rule ``single_import_per_statement`` ==================================== There MUST be one use keyword per declaration. Configuration ------------- ``group_to_single_imports`` ~~~~~~~~~~~~~~~~~~~~~~~~~~~ Whether to change group imports into single imports. Allowed types: ``bool`` Default value: ``true`` Examples -------- Example #1 ~~~~~~~~~~ *Default* configuration. .. code-block:: diff --- Original +++ New true]``. .. code-block:: diff --- Original +++ New `_ with config: ``['group_to_single_imports' => false]`` - `@PER-CS <./../../ruleSets/PER-CS.rst>`_ with config: ``['group_to_single_imports' => false]`` - `@PER-CS1.0 <./../../ruleSets/PER-CS1.0.rst>`_ with config: ``['group_to_single_imports' => false]`` - `@PER-CS2.0 <./../../ruleSets/PER-CS2.0.rst>`_ with config: ``['group_to_single_imports' => false]`` - `@PSR2 <./../../ruleSets/PSR2.rst>`_ - `@PSR12 <./../../ruleSets/PSR12.rst>`_ with config: ``['group_to_single_imports' => false]`` - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_ - `@Symfony <./../../ruleSets/Symfony.rst>`_ References ---------- - Fixer class: `PhpCsFixer\\Fixer\\Import\\SingleImportPerStatementFixer <./../../../src/Fixer/Import/SingleImportPerStatementFixer.php>`_ - Test class: `PhpCsFixer\\Tests\\Fixer\\Import\\SingleImportPerStatementFixerTest <./../../../tests/Fixer/Import/SingleImportPerStatementFixerTest.php>`_ The test class defines officially supported behaviour. Each test case is a part of our backward compatibility promise.