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 <tsteur@users.noreply.github.com>2014-07-22 11:29:44 +0400
committerThomas Steur <tsteur@users.noreply.github.com>2014-07-22 11:29:44 +0400
commitba70cfb04b2570e1bb432c3d46b61c1fa8021079 (patch)
treed5dff27f495c725c5338ab0e5c56897cdfbf7b0d /core/CronArchive.php
parent3964ebc71576e917fe24a81c7a3662576ed76ca7 (diff)
parent893801a082a173e645f31f00b4f6ef1ed29bb512 (diff)
Merge pull request #5847 from craue/code-cleanup-2
code cleanup
Diffstat (limited to 'core/CronArchive.php')
-rw-r--r--core/CronArchive.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/CronArchive.php b/core/CronArchive.php
index 28a50bf167..ae5c6fd8f9 100644
--- a/core/CronArchive.php
+++ b/core/CronArchive.php
@@ -23,7 +23,7 @@ use Piwik\Plugins\SitesManager\API as APISitesManager;
class CronArchive
{
// the url can be set here before the init, and it will be used instead of --url=
- static public $url = false;
+ public static $url = false;
// Max parallel requests for a same site's segments
const MAX_CONCURRENT_API_REQUESTS = 3;
@@ -1358,4 +1358,4 @@ class CronArchive
}
return self::MAX_CONCURRENT_API_REQUESTS;
}
-} \ No newline at end of file
+}