Fork me on GitHub
a Sensio Labs Product

I ate three cookies πŸͺ (v3.40.2) edition

Rule no_whitespace_before_comma_in_arrayΒΆ

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

ConfigurationΒΆ

after_heredocΒΆ

Whether the whitespace between heredoc end and comma should be removed.

Allowed types: bool

Default value: false

ExamplesΒΆ

Example #1ΒΆ

Default configuration.

--- Original
+++ New
-<?php $x = array(1 , "2");
+<?php $x = array(1, "2");

Example #2ΒΆ

With configuration: ['after_heredoc' => true].

--- Original
+++ New
 <?php
     $x = [<<<EOD
 foo
-EOD
-        , 'bar'
+EOD, 'bar'
     ];

Rule setsΒΆ

The rule is part of the following rule sets:

Source classΒΆ

PhpCsFixer\Fixer\ArrayNotation\NoWhitespaceBeforeCommaInArrayFixer