From aa1cc4ad88b9c28a800d3f03efde642d930f1f45 Mon Sep 17 00:00:00 2001 From: zebardy Date: Sun, 17 Nov 2019 17:02:38 +0000 Subject: [PATCH] correct typo of treating self() as a var instead of a function --- services/ApplicationService.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/services/ApplicationService.php b/services/ApplicationService.php index 878ce3b5..e7ebc88d 100644 --- a/services/ApplicationService.php +++ b/services/ApplicationService.php @@ -11,7 +11,7 @@ class ApplicationService extends BaseService { if (self::$instance == null) { - self::$instance = new $self(); + self::$instance = new self(); } return self::$instance; }