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:
authorThomas Steur <thomas.steur@gmail.com>2013-09-20 06:53:51 +0400
committerThomas Steur <thomas.steur@gmail.com>2013-09-20 06:53:51 +0400
commitbcd535f862ead3959eba64c6e864cfa9594b5482 (patch)
treeb53976c326b6b63611027c6174f48f5047310c82 /core/ScheduledTask.php
parentb7452aa1ef8a4f9c2770bb44e3454f3abfe1a962 (diff)
fix syntax error
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);