Skip to content

Latest commit

 

History

History
68 lines (48 loc) · 1.42 KB

array_syntax.rst

File metadata and controls

68 lines (48 loc) · 1.42 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' and '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:

Source class

PhpCsFixer\Fixer\ArrayNotation\ArraySyntaxFixer