summaryrefslogtreecommitdiff
path: root/Zend/zend_closures.stub.php
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-09-28 22:19:20 +0200
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-09-29 11:04:09 +0200
commit7aa2d3519b09d37c908bce080f68bfb4d064bbaf (patch)
tree1695f55b5e06b3bd76c9452c091e9e742318c070 /Zend/zend_closures.stub.php
parentde2d38d53133c8ebd2587b298d032110c700b081 (diff)
downloadphp-git-7aa2d3519b09d37c908bce080f68bfb4d064bbaf.tar.gz
Zend parameter renames amendment
Closes GH-6228
Diffstat (limited to 'Zend/zend_closures.stub.php')
-rw-r--r--Zend/zend_closures.stub.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/Zend/zend_closures.stub.php b/Zend/zend_closures.stub.php
index 875ee69203..906dedc5cf 100644
--- a/Zend/zend_closures.stub.php
+++ b/Zend/zend_closures.stub.php
@@ -14,7 +14,7 @@ final class Closure
public function bindTo(?object $newThis, object|string|null $newScope = "static"): ?Closure {}
- public function call(object $newThis, mixed ...$arguments): mixed {}
+ public function call(object $newThis, mixed ...$args): mixed {}
public static function fromCallable(callable $callback): Closure {}
}