From 913a449b273f2725a96bbb5663d8af2011100f5c Mon Sep 17 00:00:00 2001 From: "Christoph M. Becker" Date: Sat, 26 Oct 2019 16:24:02 +0200 Subject: [PATCH] Remove generic type annotations Cf. . --- ext/calendar/calendar.stub.php | 2 +- ext/curl/curl.stub.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ext/calendar/calendar.stub.php b/ext/calendar/calendar.stub.php index da08cd7037..6731cd5c0b 100644 --- a/ext/calendar/calendar.stub.php +++ b/ext/calendar/calendar.stub.php @@ -3,7 +3,7 @@ /** @return int|false */ function cal_days_in_month(int $calendar, int $month, int $year) {} -/** @return array&int&string>|false */ +/** @return array|false */ function cal_from_jd(int $jd, int $calendar) {} /** @return array|false */ diff --git a/ext/curl/curl.stub.php b/ext/curl/curl.stub.php index f5bd6daacf..022438d0b2 100644 --- a/ext/curl/curl.stub.php +++ b/ext/curl/curl.stub.php @@ -109,7 +109,7 @@ function curl_reset($handle): void {} /** * @param resource $handle - * @param array $options + * @param array $options */ function curl_setopt_array($handle, array $options): bool {} -- 2.40.0