summaryrefslogtreecommitdiff
path: root/Zend/zend_closures.stub.php
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-07-28 23:00:44 +0200
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-07-30 14:26:45 +0200
commit0d330e1a022d536de8a679d11dc8ec6f9fd64be3 (patch)
treea4b93785096169cca4ba3bb9109040311b374944 /Zend/zend_closures.stub.php
parent41de27ecc239e3a7de50446be297e288bb934505 (diff)
downloadphp-git-0d330e1a022d536de8a679d11dc8ec6f9fd64be3.tar.gz
Add a few missing parameter types in stubs
Related to GH-5627
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 65f5128e64..bf71c1b624 100644
--- a/Zend/zend_closures.stub.php
+++ b/Zend/zend_closures.stub.php
@@ -17,6 +17,6 @@ final class Closure
public function call(object $newThis, mixed ...$arguments): mixed {}
- /** @param callable $callback Not a proper type annotation due to bug #78770 */
+ /** @param callable $callback callable is not a proper type due to bug #78770. */
public static function fromCallable($callback): Closure {}
}