summaryrefslogtreecommitdiff
path: root/Zend/tests/bug62956.phpt
blob: 803a2f7d6e5878c6c33b7970452af88595b86374 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
--TEST--
Bug #62956: "incompatible" signatures for private methods should not cause E_WARNING
--FILE--
<?php
class Base
{
    private function test()
    {}
}

class Extension extends Base
{
    private function test($arg)
    {}
}

?>
==DONE==
--EXPECT--
==DONE==