-
-
Notifications
You must be signed in to change notification settings - Fork 12
Closed
Labels
Milestone
Description
π Just discovered a deprecation using mq-react running on PHP 8.2.
Creation of dynamic property React\Promise\Deferred::$pending is deprecated in /var/www/vendor/clue/mq-react/src/Queue.php on line 432
Couple of ways to solve this:
- Add
#[AllowDynamicProperties]
in reactphp/promise v2 branch. Fast but might not be what we want. - Add some sort of deferred/promise index in
Queue
. Quite a bit of work but clean.
What do you think?
clue