/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/classes/ctor_in_interface_01.phpt
19 строк
345 B
Nikita Popov
Reindent phpt files
04 фев 2020, 00:52
04 фев 2020, 00:52
f8d7958
Код
Авторство
О чём код?
--TEST-- ZE2 A class constructor must keep the signature of an interface --FILE-- <?php interface constr { function __construct(); } class implem implements constr { function __construct($a) { } } ?> --EXPECTF-- Fatal error: Declaration of implem::__construct($a) must be compatible with constr::__construct() in %s on line %d