Make WordPress Core


Ignore:
Timestamp:
01/09/2026 04:26:02 AM (2 months ago)
Author:
westonruter
Message:

Code Modernization: Use null coalescing operator instead of isset() ternaries in remaining core files.

Developed as a subset of https://github.com/WordPress/wordpress-develop/pull/10654
Initially developed in https://github.com/WordPress/wordpress-develop/pull/4886

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

Props costdev, westonruter, jrf, SergeyBiryukov, swissspidy, hellofromTonya, marybaum, oglekler, dmsnell, chaion07, noisysocks, mukesh27.
See #63430.
Fixes #58874.

File:
1 edited

Legend:

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

    r48238 r61457  
    3232            $bits = parse_url($server);
    3333            $this->server = $bits['host'];
    34             $this->port = isset($bits['port']) ? $bits['port'] : 80;
    35             $this->path = isset($bits['path']) ? $bits['path'] : '/';
     34            $this->port = $bits['port'] ?? 80;
     35            $this->path = $bits['path'] ?? '/';
    3636
    3737            // Make absolutely sure we have a path
Note: See TracChangeset for help on using the changeset viewer.