Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/matomo-org/matomo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'core/ScheduledTask.php')
-rw-r--r--core/ScheduledTask.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/ScheduledTask.php b/core/ScheduledTask.php
index d2349329de..4463daf89c 100644
--- a/core/ScheduledTask.php
+++ b/core/ScheduledTask.php
@@ -82,9 +82,9 @@ class ScheduledTask
protected function getClassNameFromInstance($_objectInstance)
{
if (is_string($_objectInstance)) {
- return $_objectInstance
+ return $_objectInstance;
}
-
+
$namespaced = get_class($_objectInstance);
$class = explode('\\', $namespaced);
return end($class);