Make WordPress Core


Ignore:
Timestamp:
06/03/2025 04:49:48 PM (6 months ago)
Author:
johnbillion
Message:

General: Various fixes to the correctness of code and documentation reported by PHPStan.

Props justlevine

See #63268

File:
1 edited

Legend:

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

    r60269 r60275  
    447447                            break;
    448448                        case 'cc':
    449                             $phpmailer->addCc( $address, $recipient_name );
     449                            $phpmailer->addCC( $address, $recipient_name );
    450450                            break;
    451451                        case 'bcc':
    452                             $phpmailer->addBcc( $address, $recipient_name );
     452                            $phpmailer->addBCC( $address, $recipient_name );
    453453                            break;
    454454                        case 'reply_to':
Note: See TracChangeset for help on using the changeset viewer.