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) {}
|
||
|
|
}
|
||
|
|
?>
|