From 72f60bc3215deae803629a735540cf7ef2dc32aa Mon Sep 17 00:00:00 2001 From: zebardy Date: Sun, 17 Nov 2019 15:39:42 +0000 Subject: [PATCH] unable to make the constructor private --- services/ApplicationService.php | 8 ++++---- services/DatabaseService.php | 8 ++++---- 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/services/ApplicationService.php b/services/ApplicationService.php index 8c30238c..878ce3b5 100644 --- a/services/ApplicationService.php +++ b/services/ApplicationService.php @@ -16,10 +16,10 @@ class ApplicationService extends BaseService return self::$instance; } - private function __construct() - { - parent::__construct(); - } + #private function __construct() + #{ + # parent::__construct(); + #} public function GetInstalledVersion() { diff --git a/services/DatabaseService.php b/services/DatabaseService.php index 3a764d71..69d859aa 100644 --- a/services/DatabaseService.php +++ b/services/DatabaseService.php @@ -51,10 +51,10 @@ class DatabaseService return self::$instance; } - private static function __construct() - { - parent::__construct(); - } + #private static function __construct() + #{ + # parent::__construct(); + #} private function GetDbFilePath()