|
22 | 22 | * - Checks that associative arrays are multi-line.
|
23 | 23 | * - Checks that each array item in a multi-line array starts on a new line.
|
24 | 24 | *
|
25 |
| - * @link https://developer.wordpress.org/coding-standards/wordpress-coding-standards/php/#indentation |
| 25 | + * @link https://developer.wordpress.org/coding-standards/wordpress-coding-standards/php/#indentation |
26 | 26 | *
|
27 |
| - * @package WPCS\WordPressCodingStandards |
28 |
| - * |
29 |
| - * @since 0.11.0 - The WordPress specific additional checks have now been split off |
30 |
| - * from the `WordPress.Arrays.ArrayDeclaration` sniff into this sniff. |
31 |
| - * - Added sniffing & fixing for associative arrays. |
32 |
| - * @since 0.12.0 Decoupled this sniff from the upstream sniff completely. |
33 |
| - * This sniff now extends the WordPressCS native `Sniff` class instead. |
34 |
| - * @since 0.13.0 Added the last remaining checks from the `WordPress.Arrays.ArrayDeclaration` |
35 |
| - * sniff which were not covered elsewhere. |
36 |
| - * The `WordPress.Arrays.ArrayDeclaration` sniff has now been deprecated. |
37 |
| - * @since 0.13.0 Class name changed: this class is now namespaced. |
38 |
| - * @since 0.14.0 Single item associative arrays are now by default exempt from the |
39 |
| - * "must be multi-line" rule. This behaviour can be changed using the |
40 |
| - * `allow_single_item_single_line_associative_arrays` property. |
41 |
| - * @since 3.0.0 Removed various whitespace related checks and fixers in favour of the PHPCSExtra |
42 |
| - * `NormalizedArrays.Arrays.ArrayBraceSpacing` sniff. |
| 27 | + * @since 0.11.0 - The WordPress specific additional checks have now been split off |
| 28 | + * from the `WordPress.Arrays.ArrayDeclaration` sniff into this sniff. |
| 29 | + * - Added sniffing & fixing for associative arrays. |
| 30 | + * @since 0.12.0 Decoupled this sniff from the upstream sniff completely. |
| 31 | + * This sniff now extends the WordPressCS native `Sniff` class instead. |
| 32 | + * @since 0.13.0 Added the last remaining checks from the `WordPress.Arrays.ArrayDeclaration` |
| 33 | + * sniff which were not covered elsewhere. |
| 34 | + * The `WordPress.Arrays.ArrayDeclaration` sniff has now been deprecated. |
| 35 | + * @since 0.13.0 Class name changed: this class is now namespaced. |
| 36 | + * @since 0.14.0 Single item associative arrays are now by default exempt from the |
| 37 | + * "must be multi-line" rule. This behaviour can be changed using the |
| 38 | + * `allow_single_item_single_line_associative_arrays` property. |
| 39 | + * @since 3.0.0 Removed various whitespace related checks and fixers in favour of the PHPCSExtra |
| 40 | + * `NormalizedArrays.Arrays.ArrayBraceSpacing` sniff. |
43 | 41 | */
|
44 | 42 | final class ArrayDeclarationSpacingSniff extends Sniff {
|
45 | 43 |
|
|
0 commit comments