mirror of
https://github.com/php/php-src.git
synced 2025-01-22 03:34:19 +08:00
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) {}
|
||
|
}
|
||
|
?>
|