Skip to content

Latest commit

 

History

History
75 lines (50 loc) · 1.87 KB

array_syntax.rst

File metadata and controls

75 lines (50 loc) · 1.87 KB

Rule array_syntax

PHP arrays should be declared using the configured syntax.

Configuration

syntax

Whether to use the long or short array syntax.

Allowed values: 'long', 'short'

Default value: 'short'

Examples

Example #1

Default configuration.

--- Original
+++ New
 <?php
-array(1,2);
+[1,2];

Example #2

With configuration: ['syntax' => 'long'].

--- Original
+++ New
 <?php
-[1,2];
+array(1,2);

Rule sets

The rule is part of the following rule sets:

@PHP54Migration
Using the @PHP54Migration rule set will enable the array_syntax rule with the default config.
@PHP70Migration
Using the @PHP70Migration rule set will enable the array_syntax rule with the default config.
@PHP71Migration
Using the @PHP71Migration rule set will enable the array_syntax rule with the default config.
@PHP73Migration
Using the @PHP73Migration rule set will enable the array_syntax rule with the default config.
@PHP74Migration
Using the @PHP74Migration rule set will enable the array_syntax rule with the default config.
@PHP80Migration
Using the @PHP80Migration rule set will enable the array_syntax rule with the default config.
@PhpCsFixer
Using the @PhpCsFixer rule set will enable the array_syntax rule with the default config.
@Symfony
Using the @Symfony rule set will enable the array_syntax rule with the default config.