Make WordPress Core


Ignore:
Timestamp:
01/29/2020 12:43:23 AM (5 years ago)
Author:
SergeyBiryukov
Message:

Docs: Improve inline comments per the documentation standards.

Includes minor code layout fixes for better readability.

See #48303.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/tests/phpunit/tests/compat.php

    r46625 r47122  
    88    function utf8_string_lengths() {
    99        return array(
    10             //                     string, character_length, byte_length
     10            // String, character_length, byte_length.
    1111            array( 'баба', 4, 8 ),
    1212            array( 'баб', 3, 6 ),
     
    2222    function utf8_substrings() {
    2323        return array(
    24             //               string, start, length, character_substring,   byte_substring
     24            // String, start, length, character_substring, byte_substring.
    2525            array( 'баба', 0, 3, 'баб', "б\xD0" ),
    2626            array( 'баба', 0, -1, 'баб', "баб\xD0" ),
     
    8787        $this->assertEquals( 'DEF', _mb_substr( $string_ascii, 3, 5, 'ISO-8859-1' ) );
    8888
    89         // specific latin-1 as that is the default the core php test opporates under
     89        // Specific latin-1 as that is the default the core PHP test operates under.
    9090        $this->assertEquals( 'peacrOiqng==', base64_encode( _mb_substr( $string_mb, 2, 7, 'latin-1' ) ) );
    9191        $this->assertEquals( '6Kqe44OG44Kt44K544OI44Gn44GZ', base64_encode( _mb_substr( $string_mb, 2, 7, 'utf-8' ) ) );
     
    104104            12345,
    105105            -2345,
    106             // float data
     106            // Float data.
    107107            10.5,
    108108            -10.5,
     
    110110            12.3456789000E-10,
    111111            .5,
    112             // null data
     112            // Null data.
    113113            null,
    114114            null,
    115             // boolean data
     115            // Boolean data.
    116116            true,
    117117            false,
    118118            true,
    119119            false,
    120             // empty data
    121             '',
    122             '',
    123             // string data
     120            // Empty data.
     121            '',
     122            '',
     123            // String data.
    124124            'string',
    125125            'string',
    126126            $heredoc,
    127             // object data
     127            // Object data.
    128128            new ClassA(),
    129129            // phpcs:ignore WordPress.PHP.NoSilencedErrors.Discouraged -- intentionally undefined data
Note: See TracChangeset for help on using the changeset viewer.