You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The behavior of the software is unexpected when I use several different types of Exceptions by pipe.
class FirstException extends Exception
{
}
class SecondException extends Exception
{
}
$a = new Deferred();
$a->reject(new Exception('test'));
$a->promise()
// this will cause TypeError
->otherwise(function (FirstException|SecondException $exception) {
// no exception here
})
->otherwise(function (Exception $exception) {
// also no exception here
})
->otherwise(function ($exception) {
// type error exception occurs here
});
the situation get worse when developer don't use : error_reporting(error_reporting() & ~E_DEPRECATED);
PHP 8.0.11
The text was updated successfully, but these errors were encountered:
The behavior of the software is unexpected when I use several different types of Exceptions by pipe.
the situation get worse when developer don't use :
error_reporting(error_reporting() & ~E_DEPRECATED);
PHP 8.0.11
The text was updated successfully, but these errors were encountered: