summaryrefslogtreecommitdiff
path: root/Zend/tests/bug76451_2.inc
blob: df7cfd6645fd9c9cf761073b1bf61b62f5364909 (plain)
1
2
3
4
5
6
7
8
<?php
class A {
    public function test(Foo $foo) {}
}
class B extends A {
    public function test(Bar $foo) {}
}
?>