// Foo.php
class Foo
{
/**
* @var Foo $foo
*/
private static $foo;
function __construct()
{
self::$foo = new self();
}
/**
* @return Foo
*/
public static function getFoo()
{
return self::$foo;
}
}// test.php
Foo::getFoo();