Page MenuHomePhorge

PHP 8.2: fix deprecated use of "parent" in callables
ClosedPublic

Authored by valerio.bozzolan on Mar 26 2023, 15:42.
Tags
None
Referenced Files
Unknown Object (File)
Thu, Apr 11, 21:49
Unknown Object (File)
Thu, Apr 11, 12:23
Unknown Object (File)
Wed, Apr 10, 22:27
Unknown Object (File)
Mon, Apr 8, 07:18
Unknown Object (File)
Mon, Apr 1, 01:04
Unknown Object (File)
Mon, Apr 1, 01:04
Unknown Object (File)
Mon, Apr 1, 01:04
Unknown Object (File)
Sat, Mar 30, 01:35
Tokens
"Like" token, awarded by valerio.bozzolan.

Details

Summary

Closes T15200

Test Plan

Test 1:

I was able to run arc unit --everything without the error thrown from T15200

Test 2:

I also tried this and it still works:

php -a
require 'src/applications/metamta/exception/PhabricatorMetaMTAReceivedMailProcessingException.php';
$asd = new PhabricatorMetaMTAReceivedMailProcessingException("1", "TEST MESSAGE");
var_dump($asd->getMessage());

You get:

string(12) "TEST MESSAGE"

Diff Detail

Repository
rP Phorge
Lint
Lint Not Applicable
Unit
Tests Not Applicable

Event Timeline

src/applications/metamta/exception/PhabricatorMetaMTAReceivedMailProcessingException.php
17

The above line means that if you do this somewhere:

new PhabricatorMetaMTAReceivedMailProcessingException( 'asd', 'lol' );

The above lines do this:

parent::__construct( 'asd', 'lol' );

That for my case is:

Exception::__construct( 'asd', 'lol' );

Note that get_parent_class($this) returns the word Exception.

src/applications/metamta/exception/PhabricatorMetaMTAReceivedMailProcessingException.php
18

In short using the string 'parent' is deprecated.

It was replaced with get_parent_class($this) that at runtime gives the parent, and it's the exact replacement.

This revision is now accepted and ready to land.Mar 29 2023, 18:18