1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-11-18 00:10:04 +00:00

devel/arcanist-lib: Fix for PHP 8.4.0RC3 (revisited)

This time including the patch.

Reported by:	cracauer
Differential Revision:	https://reviews.freebsd.org/D47376
This commit is contained in:
Michael Gmelin 2024-11-11 18:03:17 +01:00
parent baae1af5e9
commit 798fa7e211
2 changed files with 12 additions and 1 deletions

View File

@ -1,6 +1,6 @@
PORTNAME?= arcanist
PORTVERSION?= 20220518
PORTREVISION?= 6
PORTREVISION?= 7
CATEGORIES?= devel
PKGNAMESUFFIX= ${SLAVE_PKGNAMESUFFIX}${PHP_PKGNAMESUFFIX}

View File

@ -0,0 +1,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);
}