php-src/tests/classes/inheritance_007.phpt
Pedro Magalhães 272b887b7b Ignore inheritance rules on private methods
Closes GH-5401
2020-07-15 17:09:57 +01:00

52 lines
1.2 KiB
PHP

--TEST--
Ensure private methods with the same name are not checked for inheritance rules - final
--FILE--
<?php
class A {
function callYourPrivates() {
$this->normalPrivate();
$this->finalPrivate();
}
function notOverridden_callYourPrivates() {
$this->normalPrivate();
$this->finalPrivate();
}
private function normalPrivate() {
echo __METHOD__ . PHP_EOL;
}
final private function finalPrivate() {
echo __METHOD__ . PHP_EOL;
}
}
class B extends A {
function callYourPrivates() {
$this->normalPrivate();
$this->finalPrivate();
}
private function normalPrivate() {
echo __METHOD__ . PHP_EOL;
}
final private function finalPrivate() {
echo __METHOD__ . PHP_EOL;
}
}
$a = new A();
$a->callYourPrivates();
$a->notOverridden_callYourPrivates();
$b = new B();
$b->callYourPrivates();
$b->notOverridden_callYourPrivates();
?>
--EXPECTF--
Warning: Private methods cannot be final as they are never overridden by other classes %s
Warning: Private methods cannot be final as they are never overridden by other classes %s
A::normalPrivate
A::finalPrivate
A::normalPrivate
A::finalPrivate
B::normalPrivate
B::finalPrivate
A::normalPrivate
A::finalPrivate