summaryrefslogtreecommitdiff
path: root/Zend/tests/bug72496.phpt
blob: 62e55cb56147f0a415eefe0e7751996548059893 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
--TEST--
Bug #72496 (declare public method with signature incompatible with parent private method should not throw a warning)
--FILE--
<?php
class Foo
{
    private function getFoo()
    {
        return 'Foo';
    }

    private function getBar()
    {
        return 'Bar';
    }

    private function getBaz()
    {
        return 'Baz';
    }
}

class Bar extends Foo
{
    public function getFoo($extraArgument)
    {
        return $extraArgument;
    }

    protected function getBar($extraArgument)
    {
        return $extraArgument;
    }

    private function getBaz($extraArgument)
    {
        return $extraArgument;
    }
}

echo "OK\n";
--EXPECT--
OK