Make WordPress Core


Ignore:
Timestamp:
01/11/2026 06:48:15 AM (3 months ago)
Author:
westonruter
Message:

Code Modernization: Replace if statements with null coalescing operator.

Developed in https://github.com/WordPress/wordpress-develop/pull/10703

Follow-up to [61464], [61463], [61457], [61456], [61455], [61454], [61453], [61445], [61444], [61443], [61442], [61436], [61435], [61434], [61403], [61433], [61432], [61431], [61430], [61429], [61424], [61404], [61403].

Props soean, westonruter, mukesh27.
See #58874.
Fixes #64488.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-includes/class-wp-comment.php

    r59805 r61470  
    324324     */
    325325    public function get_child( $child_id ) {
    326         if ( isset( $this->children[ $child_id ] ) ) {
    327             return $this->children[ $child_id ];
    328         }
    329 
    330         return false;
     326        return $this->children[ $child_id ] ?? false;
    331327    }
    332328
Note: See TracChangeset for help on using the changeset viewer.