Skip to:
Content

bbPress.org


Ignore:
Timestamp:
11/18/2025 02:56:26 AM (4 months ago)
Author:
johnjamesjacoby
Message:

Tools - Code Improvement: stop ignoring WordPress.Arrays.ArrayDeclarationSpacing.ArrayItemNoNewLine sniff.

This commit ensures that all arrays with multiple keys & values are not on single lines.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/includes/admin/converters/Example.php

    r7372 r7374  
    697697     */
    698698    public function callback_savepass( $field, $row ) {
    699         $pass_array = array( 'hash' => $field, 'salt' => $row['salt'] );
     699        $pass_array = array(
     700            'hash' => $field,
     701            'salt' => $row['salt']
     702        );
     703
    700704        return $pass_array;
    701705    }
Note: See TracChangeset for help on using the changeset viewer.