unable to make the constructor private

This commit is contained in:
zebardy 2019-11-17 15:39:42 +00:00
parent b9f9e18160
commit 72f60bc321
2 changed files with 8 additions and 8 deletions

View File

@ -16,10 +16,10 @@ class ApplicationService extends BaseService
return self::$instance;
}
private function __construct()
{
parent::__construct();
}
#private function __construct()
#{
# parent::__construct();
#}
public function GetInstalledVersion()
{

View File

@ -51,10 +51,10 @@ class DatabaseService
return self::$instance;
}
private static function __construct()
{
parent::__construct();
}
#private static function __construct()
#{
# parent::__construct();
#}
private function GetDbFilePath()