Fork me on GitHub
a Sensio Labs Product

Brazilian Kangaroo (v3.17.0) edition

Rule list_syntax

List (array destructuring) assignment should be declared using the configured syntax. Requires PHP >= 7.1.

Configuration

syntax

Whether to use the long or short list syntax.

Allowed values: 'long', 'short'

Default value: 'short'

Examples

Example #1

Default configuration.

--- Original
+++ New
 <?php
-list($sample) = $array;
+[$sample] = $array;

Example #2

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

--- Original
+++ New
 <?php
-[$sample] = $array;
+list($sample) = $array;

Rule sets

The rule is part of the following rule sets:

@PHP71Migration

Using the @PHP71Migration rule set will enable the list_syntax rule with the default config.

@PHP73Migration

Using the @PHP73Migration rule set will enable the list_syntax rule with the default config.

@PHP74Migration

Using the @PHP74Migration rule set will enable the list_syntax rule with the default config.

@PHP80Migration

Using the @PHP80Migration rule set will enable the list_syntax rule with the default config.

@PHP81Migration

Using the @PHP81Migration rule set will enable the list_syntax rule with the default config.

@PHP82Migration

Using the @PHP82Migration rule set will enable the list_syntax rule with the default config.

The logo is © 2010-2022 Sensio Labs