mirror of
https://github.com/php/php-src.git
synced 2026-04-29 11:13:36 +02:00
bce1f4aeb1
First pass at moving `Zend/tests/bug*` tests to existing sub directories Work towards GH-15631
9 lines
119 B
PHP
9 lines
119 B
PHP
<?php
|
|
class A {
|
|
public function test(Foo $foo) {}
|
|
}
|
|
class B extends A {
|
|
public function test(Bar $foo) {}
|
|
}
|
|
?>
|