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();
?>