/
vshmidt
/
php
Обзор
Документация
Войти
/
vshmidt
/
php
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
tests/classes/inheritance_008.phpt
16 строк
310 B
Pedro Magalhães
Ignore inheritance rules on private methods
15 июл 2020, 19:09
15 июл 2020, 19:09
272b887
Код
Авторство
О чём код?
--TEST-- Ensure private methods with the same name are not checked for inheritance rules - static --FILE-- <?php class A { static private function foo() { } private function bar() {} } class B extends A { private function foo() {} static private function bar() {} } echo 'OK'; ?> --EXPECT-- OK