There MUST NOT be spaces around offset braces.
Whether spacing should be fixed inside and/or outside the offset braces.
Allowed values: a subset of ['inside', 'outside']
Default value: ['inside', 'outside']
Default configuration.
--- Original
+++ New
<?php
-$sample = $b [ 'a' ] [ 'b' ];
+$sample = $b['a']['b'];
With configuration: ['positions' => ['inside']]
.
--- Original
+++ New
<?php
-$sample = $b [ 'a' ] [ 'b' ];
+$sample = $b ['a'] ['b'];
With configuration: ['positions' => ['outside']]
.
--- Original
+++ New
<?php
-$sample = $b [ 'a' ] [ 'b' ];
+$sample = $b[ 'a' ][ 'b' ];
The rule is part of the following rule sets:
- @PhpCsFixer
- Using the @PhpCsFixer rule set will enable the
no_spaces_around_offset
rule with the default config. - @Symfony
- Using the @Symfony rule set will enable the
no_spaces_around_offset
rule with the default config.