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/actions.php

    r56352 r56548  
    7676        $this->assertSame( 1, $a->get_call_count() );
    7777        $this->assertSame( array( $hook_name ), $a->get_hook_names() );
    78 
    7978    }
    8079
     
    283282        $this->assertSame( 1, did_action( $hook_name1 ) );
    284283        $this->assertSame( $count, did_action( $hook_name2 ) );
    285 
    286284    }
    287285
     
    310308        remove_action( 'all', array( &$a, 'action' ) );
    311309        $this->assertFalse( has_filter( 'all', array( &$a, 'action' ) ) );
    312 
    313310    }
    314311
Note: See TracChangeset for help on using the changeset viewer.