correct typo of treating self() as a var instead of a function

This commit is contained in:
zebardy 2019-11-17 17:02:38 +00:00
parent 1659e151a7
commit aa1cc4ad88

View File

@ -11,7 +11,7 @@ class ApplicationService extends BaseService
{ {
if (self::$instance == null) if (self::$instance == null)
{ {
self::$instance = new $self(); self::$instance = new self();
} }
return self::$instance; return self::$instance;
} }