123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- ========================================
- Rule ``no_trailing_comma_in_singleline``
- ========================================
- If a list of values separated by a comma is contained on a single line, then the
- last item MUST NOT have a trailing comma.
- Configuration
- -------------
- ``elements``
- ~~~~~~~~~~~~
- Which elements to fix.
- Allowed values: a subset of ``['arguments', 'array', 'array_destructuring', 'group_import']``
- Default value: ``['arguments', 'array_destructuring', 'array', 'group_import']``
- Examples
- --------
- Example #1
- ~~~~~~~~~~
- *Default* configuration.
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- -foo($a,);
- -$foo = array(1,);
- -[$foo, $bar,] = $array;
- -use a\{ClassA, ClassB,};
- +foo($a);
- +$foo = array(1);
- +[$foo, $bar] = $array;
- +use a\{ClassA, ClassB};
- Example #2
- ~~~~~~~~~~
- With configuration: ``['elements' => ['array_destructuring']]``.
- .. code-block:: diff
- --- Original
- +++ New
- <?php
- foo($a,);
- -[$foo, $bar,] = $array;
- +[$foo, $bar] = $array;
- Rule sets
- ---------
- The rule is part of the following rule sets:
- - `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_
- - `@Symfony <./../../ruleSets/Symfony.rst>`_
|