Sign in
apache
/
netbeans
/
c9ae5f89a8f92e7ca33367c3f2d49de62080ff6c
/
.
/
php
/
php.editor
/
test
/
unit
/
data
/
testfiles
/
gotodeclaration
/
testIssue217360
/
testIssue217360.php
blob: 999ae9515ef4dcd0adf050b938e13151f914bd74 [
file
]
<?
php
class
One
{
private
function
getTwo
()
//One
{
return
new
Two
();
}
public
function
doSomething
()
{
$two
=
$this
->
getTwo
();
return
$two
->
getTwo
();
}
}
(
new
Two
)->
getTwo
();
?>