Sign in
apache
/
netbeans
/
07317d8d238781ba03be315aa414e43879e22623
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
verification
/
testIssue270237Fix02.php.testIssue270237Fix02a.fixed
blob: a230baf223f2a2d419a9f91079891ad68a4d2834 [
file
] [
log
] [
blame
]
<?
php
interface
FooInterface
{
/**
* @return string|int
*/
public
function
someMethod
(?
string
$string
,
int
$int
):
?
Bar
;
}
class
Foo
implements
FooInterface
{
public
function
someMethod
(?
string
$string
,
int
$int
):
?
\Bar
{
}
}