From f581de55e7607d1c0428d8aa799c0f0bf7ccef79 Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 4 Jul 2022 15:50:06 +0200 Subject: [PATCH] Fix GH-8842 don't set sensitive param in legacy arginfo --- build/gen_stub.php | 1 + 1 file changed, 1 insertion(+) diff --git a/build/gen_stub.php b/build/gen_stub.php index 202ab1fdc6ed4..7be2cae399621 100755 --- a/build/gen_stub.php +++ b/build/gen_stub.php @@ -1398,6 +1398,7 @@ public function discardInfoForOldPhpVersions(): void { foreach ($this->args as $arg) { $arg->type = null; $arg->defaultValue = null; + $arg->isSensitive = null; } }