
no_trailing_comma_in_singleline_array
¶PHP single-line arrays should not have trailing comma.
--- Original
+++ New
@@ -1,2 +1,2 @@
<?php
-$a = array('sample', );
+$a = array('sample');
The rule is part of the following rule sets:
Using the @PhpCsFixer rule set will enable the no_trailing_comma_in_singleline_array
rule.
Using the @Symfony rule set will enable the no_trailing_comma_in_singleline_array
rule.