Sign in
apache
/
netbeans
/
07317d8d238781ba03be315aa414e43879e22623
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
verification
/
testIssue270237Fix04.php.testIssue270237Fix04a.fixed
blob: 8f36aa861571d1f194d605f4b4aa694d5efb9b8e [
file
] [
log
] [
blame
]
<?
php
interface
FooInterface
{
public
function
someMethod
(?
self
$baz
);
}
class
Foo
implements
FooInterface
{
public
function
someMethod
(?
\FooInterface $baz
)
{
}
}