Sign in
apache
/
netbeans
/
07317d8d238781ba03be315aa414e43879e22623
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
verification
/
testIssue270237Fix03.php.testIssue270237Fix03b.fixed
blob: 7cf77612935d27bbfcd023e2a31e01edc925b191 [
file
] [
log
] [
blame
]
<?
php
interface
FooInterface
{
public
function
someMethod
(?
string
$string
,
int
$int
):
?
self
;
}
class
Foo
implements
FooInterface
{
public
function
someMethod
(?
string
$string
,
int
$int
)
{
}
}