1
0
mirror of https://github.com/danog/psalm.git synced 2024-11-30 04:39:00 +01:00
This commit is contained in:
Bruce Weirdan 2020-02-07 19:32:37 +02:00 committed by Matthew Brown
parent e6ec5fa22a
commit d99f23eb45

View File

@ -182,7 +182,8 @@ class IteratorIterator implements OuterIterator {
* @template-extends IteratorIterator<TKey, TValue>
*/
class FilterIterator extends IteratorIterator {
public abstract function accept () : bool {}
/** @return bool */
public abstract function accept () {}
}