Make WordPress Core


Ignore:
Timestamp:
09/08/2023 10:01:14 AM (19 months 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/filesystem/findFolder.php

    r56547 r56548  
    2525        $path = $fs->find_folder( '/this/directory/doesnt/exist/' );
    2626        $this->assertFalse( $path );
    27 
    2827    }
    2928
     
    4948        $path = $fs->find_folder( '/var/www/wp.example.com/wordpress/wp-content/' );
    5049        $this->assertSame( '/www/wp.example.com/wordpress/wp-content/', $path );
    51 
    5250    }
    5351
     
    7775        $path = $fs->abspath( '/var/www/example.com/' );
    7876        $this->assertSame( '/', $path );
    79 
    8077    }
    8178
Note: See TracChangeset for help on using the changeset viewer.