Make WordPress Core


Ignore:
Timestamp:
09/08/2023 10:01:14 AM (3 years ago)
Author:
SergeyBiryukov
Message:

Coding Standards: Remove superfluous blank lines at the end of various functions.

Note: This is enforced by WPCS 3.0.0.

Follow-up to [56536], [56547].

Props jrf.
See #59161, #58831.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/theme/wpThemeJson.php

    r56547 r56548  
    766766            $theme_json->get_stylesheet( array( 'variables' ) )
    767767        );
    768 
    769768    }
    770769
     
    37703769        $this->assertIsArray( $sanitized_theme_json, 'Sanitized theme.json is not an array data type' );
    37713770        $this->assertArrayNotHasKey( 'styles', $sanitized_theme_json, 'Sanitized theme.json should not have a "styles" key' );
    3772 
    37733771    }
    37743772
     
    47634761        $this->assertEquals( 'var(--wp--preset--font-size--s)', $styles['blocks']['core/quote']['variations']['plain']['typography']['fontSize'], 'Style variations: Assert the originally correct values are still correct.' );
    47644762        $this->assertEquals( 'var(--wp--preset--color--s)', $styles['blocks']['core/quote']['variations']['plain']['color']['background'], 'Style variations: Assert the internal variables are convert to CSS custom variables.' );
    4765 
    47664763    }
    47674764
Note: See TracChangeset for help on using the changeset viewer.