Skip to:
Content

bbPress.org


Ignore:
Timestamp:
11/18/2025 02:56:26 AM (5 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/AEF.php

    r7352 r7374  
    578578     */
    579579    public function callback_savepass( $field, $row ) {
    580         $pass_array = array( 'hash' => $field, 'salt' => $row['salt'] );
     580        $pass_array = array(
     581            'hash' => $field,
     582            'salt' => $row['salt']
     583        );
     584
    581585        return $pass_array;
    582586    }
Note: See TracChangeset for help on using the changeset viewer.