class Test {
private function __construct() {
}

public static function getInstance() {
return new Test();
}
}

$obj = Test::getInstance();