We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1f160db commit 7187c0eCopy full SHA for 7187c0e
src/Reflection/SignatureMap/FunctionSignatureMapProvider.php
@@ -246,6 +246,15 @@ public function getSignatureMap(): array
246
$signatureMap = $this->computeSignatureMap($signatureMap, $php83MapDelta);
247
}
248
249
+ if ($this->phpVersion->getVersionId() >= 80400) {
250
+ $php84MapDelta = require __DIR__ . '/../../../resources/functionMap_php84delta.php';
251
+ if (!is_array($php84MapDelta)) {
252
+ throw new ShouldNotHappenException('Signature map could not be loaded.');
253
+ }
254
+
255
+ $signatureMap = $this->computeSignatureMap($signatureMap, $php84MapDelta);
256
257
258
return self::$signatureMaps[$cacheKey] = $signatureMap;
259
260
0 commit comments