Make WordPress Core


Ignore:
Timestamp:
11/30/2017 11:09:33 PM (7 years ago)
Author:
pento
Message:

Code is Poetry.
WordPress' code just... wasn't.
This is now dealt with.

Props jrf, pento, netweb, GaryJ, jdgrimes, westonruter, Greg Sherwood from PHPCS, and everyone who's ever contributed to WPCS and PHPCS.
Fixes #41057.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/comment/lastCommentModified.php

    r42228 r42343  
    1111
    1212    public function test_default_timezone() {
    13         self::factory()->comment->create_and_get( array(
    14             'comment_status'   => 1,
    15             'comment_date'     => '2000-01-01 11:00:00',
    16             'comment_date_gmt' => '2000-01-01 10:00:00',
    17         ) );
     13        self::factory()->comment->create_and_get(
     14            array(
     15                'comment_status'   => 1,
     16                'comment_date'     => '2000-01-01 11:00:00',
     17                'comment_date_gmt' => '2000-01-01 10:00:00',
     18            )
     19        );
    1820
    1921        $this->assertSame( strtotime( '2000-01-01 10:00:00' ), strtotime( get_lastcommentmodified() ) );
     
    2123
    2224    public function test_server_timezone() {
    23         self::factory()->comment->create_and_get( array(
    24             'comment_status'   => 1,
    25             'comment_date'     => '2000-01-01 11:00:00',
    26             'comment_date_gmt' => '2000-01-01 10:00:00',
    27         ) );
     25        self::factory()->comment->create_and_get(
     26            array(
     27                'comment_status'   => 1,
     28                'comment_date'     => '2000-01-01 11:00:00',
     29                'comment_date_gmt' => '2000-01-01 10:00:00',
     30            )
     31        );
    2832
    2933        $this->assertSame( strtotime( '2000-01-01 10:00:00' ), strtotime( get_lastcommentmodified() ) );
     
    3135
    3236    public function test_blog_timezone() {
    33         self::factory()->comment->create_and_get( array(
    34             'comment_status'   => 1,
    35             'comment_date'     => '2000-01-01 11:00:00',
    36             'comment_date_gmt' => '2000-01-01 10:00:00',
    37         ) );
     37        self::factory()->comment->create_and_get(
     38            array(
     39                'comment_status'   => 1,
     40                'comment_date'     => '2000-01-01 11:00:00',
     41                'comment_date_gmt' => '2000-01-01 10:00:00',
     42            )
     43        );
    3844
    3945        $this->assertSame( '2000-01-01 11:00:00', get_lastcommentmodified( 'blog' ) );
     
    4147
    4248    public function test_gmt_timezone() {
    43         self::factory()->comment->create_and_get( array(
    44             'comment_status'   => 1,
    45             'comment_date'     => '2000-01-01 11:00:00',
    46             'comment_date_gmt' => '2000-01-01 10:00:00',
    47         ) );
     49        self::factory()->comment->create_and_get(
     50            array(
     51                'comment_status'   => 1,
     52                'comment_date'     => '2000-01-01 11:00:00',
     53                'comment_date_gmt' => '2000-01-01 10:00:00',
     54            )
     55        );
    4856
    4957        $this->assertSame( strtotime( '2000-01-01 10:00:00' ), strtotime( get_lastcommentmodified( 'GMT' ) ) );
     
    5159
    5260    public function test_unknown_timezone() {
    53         self::factory()->comment->create_and_get( array(
    54             'comment_status'   => 1,
    55             'comment_date'     => '2000-01-01 11:00:00',
    56             'comment_date_gmt' => '2000-01-01 10:00:00',
    57         ) );
     61        self::factory()->comment->create_and_get(
     62            array(
     63                'comment_status'   => 1,
     64                'comment_date'     => '2000-01-01 11:00:00',
     65                'comment_date_gmt' => '2000-01-01 10:00:00',
     66            )
     67        );
    5868
    5969        $this->assertFalse( get_lastcommentmodified( 'foo' ) );
     
    6171
    6272    public function test_data_is_cached() {
    63         self::factory()->comment->create_and_get( array(
    64             'comment_status'   => 1,
    65             'comment_date'     => '2015-04-01 11:00:00',
    66             'comment_date_gmt' => '2015-04-01 10:00:00',
    67         ) );
     73        self::factory()->comment->create_and_get(
     74            array(
     75                'comment_status'   => 1,
     76                'comment_date'     => '2015-04-01 11:00:00',
     77                'comment_date_gmt' => '2015-04-01 10:00:00',
     78            )
     79        );
    6880
    6981        get_lastcommentmodified();
     
    7284
    7385    public function test_cache_is_cleared() {
    74         self::factory()->comment->create_and_get( array(
    75             'comment_status'   => 1,
    76             'comment_date'     => '2000-01-01 11:00:00',
    77             'comment_date_gmt' => '2000-01-01 10:00:00',
    78         ) );
     86        self::factory()->comment->create_and_get(
     87            array(
     88                'comment_status'   => 1,
     89                'comment_date'     => '2000-01-01 11:00:00',
     90                'comment_date_gmt' => '2000-01-01 10:00:00',
     91            )
     92        );
    7993
    8094        get_lastcommentmodified();
     
    8296        $this->assertSame( strtotime( '2000-01-01 10:00:00' ), strtotime( wp_cache_get( 'lastcommentmodified:server', 'timeinfo' ) ) );
    8397
    84         self::factory()->comment->create_and_get( array(
    85             'comment_status'   => 1,
    86             'comment_date'     => '2000-01-02 11:00:00',
    87             'comment_date_gmt' => '2000-01-02 10:00:00',
    88         ) );
     98        self::factory()->comment->create_and_get(
     99            array(
     100                'comment_status'   => 1,
     101                'comment_date'     => '2000-01-02 11:00:00',
     102                'comment_date_gmt' => '2000-01-02 10:00:00',
     103            )
     104        );
    89105
    90106        $this->assertFalse( wp_cache_get( 'lastcommentmodified:server', 'timeinfo' ) );
     
    94110
    95111    public function test_cache_is_cleared_when_comment_is_trashed() {
    96         $comment_1 = self::factory()->comment->create_and_get( array(
    97             'comment_status'   => 1,
    98             'comment_date'     => '1998-01-01 11:00:00',
    99             'comment_date_gmt' => '1998-01-01 10:00:00',
    100         ) );
     112        $comment_1 = self::factory()->comment->create_and_get(
     113            array(
     114                'comment_status'   => 1,
     115                'comment_date'     => '1998-01-01 11:00:00',
     116                'comment_date_gmt' => '1998-01-01 10:00:00',
     117            )
     118        );
    101119
    102         $comment_2 = self::factory()->comment->create_and_get( array(
    103             'comment_status'   => 1,
    104             'comment_date'     => '2000-01-02 11:00:00',
    105             'comment_date_gmt' => '2000-01-02 10:00:00',
    106         ) );
     120        $comment_2 = self::factory()->comment->create_and_get(
     121            array(
     122                'comment_status'   => 1,
     123                'comment_date'     => '2000-01-02 11:00:00',
     124                'comment_date_gmt' => '2000-01-02 10:00:00',
     125            )
     126        );
    107127
    108128        get_lastcommentmodified();
Note: See TracChangeset for help on using the changeset viewer.