Make WordPress Core


Ignore:
Timestamp:
06/13/2024 03:04:50 PM (5 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-includes/blocks.php

    r58356 r58408  
    11531153    }
    11541154
    1155     $attributes = array();
     1155    $attributes            = array();
    11561156    $ignored_hooked_blocks = get_post_meta( $post->ID, '_wp_ignored_hooked_blocks', true );
    11571157    if ( ! empty( $ignored_hooked_blocks ) ) {
     
    15851585        } else {
    15861586            if ( ! empty( $blocks[ $i ]['innerBlocks'] ) ) {
    1587                 $prev_inner_content          = $inner_content;
    1588                 $inner_content               = $blocks[ $i ]['innerContent'];
    1589                 $blocks[ $i ]['innerBlocks'] = resolve_pattern_blocks(
     1587                $prev_inner_content           = $inner_content;
     1588                $inner_content                = $blocks[ $i ]['innerContent'];
     1589                $blocks[ $i ]['innerBlocks']  = resolve_pattern_blocks(
    15901590                    $blocks[ $i ]['innerBlocks']
    15911591                );
    15921592                $blocks[ $i ]['innerContent'] = $inner_content;
    1593                 $inner_content               = $prev_inner_content;
     1593                $inner_content                = $prev_inner_content;
    15941594            }
    15951595            ++$i;
Note: See TracChangeset for help on using the changeset viewer.