PHP arrays should be declared using the configured syntax.
Whether to use the long
or short
array syntax.
Allowed values: 'long'
, 'short'
Default value: 'long'
Default configuration.
--- Original
+++ New
@@ -1,2 +1,2 @@
<?php
-[1,2];
+array(1,2);
With configuration: ['syntax' => 'short']
.
--- Original
+++ New
@@ -1,2 +1,2 @@
<?php
-array(1,2);
+[1,2];
The rule is part of the following rule sets:
- @PHP54Migration
Using the @PHP54Migration rule set will enable the
array_syntax
rule with the config below:['syntax' => 'short']
- @PHP56Migration
Using the @PHP56Migration rule set will enable the
array_syntax
rule with the config below:['syntax' => 'short']
- @PHP70Migration
Using the @PHP70Migration rule set will enable the
array_syntax
rule with the config below:['syntax' => 'short']
- @PHP71Migration
Using the @PHP71Migration rule set will enable the
array_syntax
rule with the config below:['syntax' => 'short']
- @PHP73Migration
Using the @PHP73Migration rule set will enable the
array_syntax
rule with the config below:['syntax' => 'short']
- @PHP74Migration
Using the @PHP74Migration rule set will enable the
array_syntax
rule with the config below:['syntax' => 'short']
- @PHP80Migration
Using the @PHP80Migration rule set will enable the
array_syntax
rule with the config below:['syntax' => 'short']
- @PhpCsFixer
Using the @PhpCsFixer rule set will enable the
array_syntax
rule with the config below:['syntax' => 'short']
- @Symfony
Using the @Symfony rule set will enable the
array_syntax
rule with the config below:['syntax' => 'short']