|
@@ -14,7 +14,7 @@ Whether to use the ``long`` or ``short`` array syntax.
|
|
|
|
|
|
Allowed values: ``'long'``, ``'short'``
|
|
|
|
|
|
-Default value: ``'long'``
|
|
|
+Default value: ``'short'``
|
|
|
|
|
|
Examples
|
|
|
--------
|
|
@@ -30,13 +30,13 @@ Example #1
|
|
|
+++ New
|
|
|
@@ -1,2 +1,2 @@
|
|
|
<?php
|
|
|
- -[1,2];
|
|
|
- +array(1,2);
|
|
|
+ -array(1,2);
|
|
|
+ +[1,2];
|
|
|
|
|
|
Example #2
|
|
|
~~~~~~~~~~
|
|
|
|
|
|
-With configuration: ``['syntax' => 'short']``.
|
|
|
+With configuration: ``['syntax' => 'long']``.
|
|
|
|
|
|
.. code-block:: diff
|
|
|
|
|
@@ -44,8 +44,8 @@ With configuration: ``['syntax' => 'short']``.
|
|
|
+++ New
|
|
|
@@ -1,2 +1,2 @@
|
|
|
<?php
|
|
|
- -array(1,2);
|
|
|
- +[1,2];
|
|
|
+ -[1,2];
|
|
|
+ +array(1,2);
|
|
|
|
|
|
Rule sets
|
|
|
---------
|
|
@@ -53,41 +53,25 @@ Rule sets
|
|
|
The rule is part of the following rule sets:
|
|
|
|
|
|
@PHP54Migration
|
|
|
- Using the `@PHP54Migration <./../../ruleSets/PHP54Migration.rst>`_ rule set will enable the ``array_syntax`` rule with the config below:
|
|
|
-
|
|
|
- ``['syntax' => 'short']``
|
|
|
+ Using the `@PHP54Migration <./../../ruleSets/PHP54Migration.rst>`_ rule set will enable the ``array_syntax`` rule with the default config.
|
|
|
|
|
|
@PHP70Migration
|
|
|
- Using the `@PHP70Migration <./../../ruleSets/PHP70Migration.rst>`_ rule set will enable the ``array_syntax`` rule with the config below:
|
|
|
-
|
|
|
- ``['syntax' => 'short']``
|
|
|
+ Using the `@PHP70Migration <./../../ruleSets/PHP70Migration.rst>`_ rule set will enable the ``array_syntax`` rule with the default config.
|
|
|
|
|
|
@PHP71Migration
|
|
|
- Using the `@PHP71Migration <./../../ruleSets/PHP71Migration.rst>`_ rule set will enable the ``array_syntax`` rule with the config below:
|
|
|
-
|
|
|
- ``['syntax' => 'short']``
|
|
|
+ Using the `@PHP71Migration <./../../ruleSets/PHP71Migration.rst>`_ rule set will enable the ``array_syntax`` rule with the default config.
|
|
|
|
|
|
@PHP73Migration
|
|
|
- Using the `@PHP73Migration <./../../ruleSets/PHP73Migration.rst>`_ rule set will enable the ``array_syntax`` rule with the config below:
|
|
|
-
|
|
|
- ``['syntax' => 'short']``
|
|
|
+ Using the `@PHP73Migration <./../../ruleSets/PHP73Migration.rst>`_ rule set will enable the ``array_syntax`` rule with the default config.
|
|
|
|
|
|
@PHP74Migration
|
|
|
- Using the `@PHP74Migration <./../../ruleSets/PHP74Migration.rst>`_ rule set will enable the ``array_syntax`` rule with the config below:
|
|
|
-
|
|
|
- ``['syntax' => 'short']``
|
|
|
+ Using the `@PHP74Migration <./../../ruleSets/PHP74Migration.rst>`_ rule set will enable the ``array_syntax`` rule with the default config.
|
|
|
|
|
|
@PHP80Migration
|
|
|
- Using the `@PHP80Migration <./../../ruleSets/PHP80Migration.rst>`_ rule set will enable the ``array_syntax`` rule with the config below:
|
|
|
-
|
|
|
- ``['syntax' => 'short']``
|
|
|
+ Using the `@PHP80Migration <./../../ruleSets/PHP80Migration.rst>`_ rule set will enable the ``array_syntax`` rule with the default config.
|
|
|
|
|
|
@PhpCsFixer
|
|
|
- Using the `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_ rule set will enable the ``array_syntax`` rule with the config below:
|
|
|
-
|
|
|
- ``['syntax' => 'short']``
|
|
|
+ Using the `@PhpCsFixer <./../../ruleSets/PhpCsFixer.rst>`_ rule set will enable the ``array_syntax`` rule with the default config.
|
|
|
|
|
|
@Symfony
|
|
|
- Using the `@Symfony <./../../ruleSets/Symfony.rst>`_ rule set will enable the ``array_syntax`` rule with the config below:
|
|
|
-
|
|
|
- ``['syntax' => 'short']``
|
|
|
+ Using the `@Symfony <./../../ruleSets/Symfony.rst>`_ rule set will enable the ``array_syntax`` rule with the default config.
|