php-8.0.30-src/Zend/tests/bug76451_2.inc

9 lines
119 B
PHP

<?php
class A {
public function test(Foo $foo) {}
}
class B extends A {
public function test(Bar $foo) {}
}
?>