summaryrefslogtreecommitdiff
path: root/Zend/zend_generators.stub.php
diff options
context:
space:
mode:
authorMáté Kocsis <kocsismate@woohoolabs.com>2020-04-11 10:23:51 +0200
committerMáté Kocsis <kocsismate@woohoolabs.com>2020-04-11 10:23:51 +0200
commitca006e54e30bc5ac96f35af1ed7fd73a8c422cf0 (patch)
treed12144e326fa4aaab3212ea3218378f39c4ea9b0 /Zend/zend_generators.stub.php
parent1d05771a70a64b897d4af832654202fdfd40de86 (diff)
downloadphp-git-ca006e54e30bc5ac96f35af1ed7fd73a8c422cf0.tar.gz
Add missing visibility modifiers in stubs
Diffstat (limited to 'Zend/zend_generators.stub.php')
-rw-r--r--Zend/zend_generators.stub.php16
1 files changed, 8 insertions, 8 deletions
diff --git a/Zend/zend_generators.stub.php b/Zend/zend_generators.stub.php
index 3599cc0e69..7f45f726b5 100644
--- a/Zend/zend_generators.stub.php
+++ b/Zend/zend_generators.stub.php
@@ -2,24 +2,24 @@
final class Generator implements Iterator
{
- function rewind(): void {}
+ public function rewind(): void {}
- function valid(): bool {}
+ public function valid(): bool {}
/** @return mixed */
- function current() {}
+ public function current() {}
/** @return mixed */
- function key() {}
+ public function key() {}
- function next(): void {}
+ public function next(): void {}
/** @return mixed */
- function send($value) {}
+ public function send($value) {}
/** @return mixed */
- function throw(Throwable $exception) {}
+ public function throw(Throwable $exception) {}
/** @return mixed */
- function getReturn() {}
+ public function getReturn() {}
}