This commit is contained in:
2023-11-24 10:23:28 +08:00
parent 6b9195476a
commit ea13b67364
+2 -1
View File
@@ -150,8 +150,9 @@ abstract class BaseApplication extends Component
{ {
if ($this->localService->has($name)) { if ($this->localService->has($name)) {
return $this->localService->get($name); return $this->localService->get($name);
} else {
return parent::__get($name);
} }
return parent::__get($name); // TODO: Change the autogenerated stub
} }