Skip to content

Latest commit

 

History

History
30 lines (21 loc) · 700 Bytes

whitespace_after_comma_in_array.rst

File metadata and controls

30 lines (21 loc) · 700 Bytes

Rule whitespace_after_comma_in_array

In array declaration, there MUST be a whitespace after each comma.

Examples

Example #1

--- Original
+++ New
 <?php
-$sample = array(1,'a',$b,);
+$sample = array(1, 'a', $b, );

Rule sets

The rule is part of the following rule sets:

@PhpCsFixer
Using the @PhpCsFixer rule set will enable the whitespace_after_comma_in_array rule.
@Symfony
Using the @Symfony rule set will enable the whitespace_after_comma_in_array rule.