Make WordPress Core


Ignore:
Timestamp:
06/13/2024 03:04:50 PM (10 months ago)
Author:
desrosj
Message:

Coding Standards: Apply changes after running composer format.

This applies several formatting related changes made while running composer format.

Follow up to [55720], [58171], [58271], [58282], [58283], [58292], [58299], [58303], [58332].
See #51857, #60719, #60895, #61021, #61118, #61228, #61276, #61324.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/includes/class-wp-site-health.php

    r58338 r58408  
    18451845                size_format( 20 * MB_IN_BYTES )
    18461846            );
    1847             $result['status']      = 'critical';
     1847            $result['status'] = 'critical';
    18481848        } elseif ( $available_space < 100 * MB_IN_BYTES ) {
    18491849            $result['description'] = sprintf(
     
    18521852                size_format( 100 * MB_IN_BYTES )
    18531853            );
    1854             $result['status']      = 'recommended';
     1854            $result['status'] = 'recommended';
    18551855        }
    18561856
     
    27722772                    'test'  => 'available_updates_disk_space',
    27732773                ),
    2774                 'autoloaded_options' => array(
     2774                'autoloaded_options'           => array(
    27752775                    'label' => __( 'Autoloaded options' ),
    27762776                    'test'  => 'autoloaded_options',
Note: See TracChangeset for help on using the changeset viewer.