blob: f6d80a939b2ac288780e99b720a1fa75bd5f0ef4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
--- src/future/FutureProxy.php.orig 2022-05-17 23:20:14 UTC
+++ src/future/FutureProxy.php
@@ -8,7 +8,7 @@ abstract class FutureProxy extends Future {
private $proxied;
- public function __construct(Future $proxied = null) {
+ public function __construct(?Future $proxied = null) {
if ($proxied) {
$this->setProxiedFuture($proxied);
}
|