/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
ext/spl/tests/iterator_056.phpt
64 строки
1 KB
Máté Kocsis
Declare tentative return types in ext/spl - part 3 (#7239)
16 июл 2021, 13:09
Не верифицирован
16 июл 2021, 13:09
b3e0888
Код
Авторство
О чём код?
--TEST-- SPL: Calling __construct(void) on class extending SPL iterator --CREDITS-- Sebastian Schürmann --FILE-- <?php class myFilterIterator extends FilterIterator { function accept(): bool { } } class myCachingIterator extends CachingIterator { } class myRecursiveCachingIterator extends RecursiveCachingIterator { } class myParentIterator extends ParentIterator { } class myLimitIterator extends LimitIterator { } class myNoRewindIterator extends NoRewindIterator {} try { $it = new myFilterIterator(); } catch (TypeError $e) { echo $e->getMessage(), "\n"; } try { $it = new myCachingIterator(); } catch (TypeError $e) { echo $e->getMessage(), "\n"; } try { $it = new myRecursiveCachingIterator(); } catch (TypeError $e) { echo $e->getMessage(), "\n"; } try { $it = new myParentIterator(); } catch (TypeError $e) { echo $e->getMessage(), "\n"; } try { $it = new myLimitIterator(); } catch (TypeError $e) { echo $e->getMessage(), "\n"; } try { $it = new myNoRewindIterator(); } catch (TypeError $e) { echo $e->getMessage(), "\n"; } ?> --EXPECT-- FilterIterator::__construct() expects exactly 1 argument, 0 given CachingIterator::__construct() expects at least 1 argument, 0 given RecursiveCachingIterator::__construct() expects at least 1 argument, 0 given ParentIterator::__construct() expects exactly 1 argument, 0 given LimitIterator::__construct() expects at least 1 argument, 0 given NoRewindIterator::__construct() expects exactly 1 argument, 0 given