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:
authorChristian Raue <christian.raue@gmail.com>2014-07-16 16:35:43 +0400
committerChristian Raue <christian.raue@gmail.com>2014-07-19 12:31:16 +0400
commit893801a082a173e645f31f00b4f6ef1ed29bb512 (patch)
tree51e97ba555310a9e330cf648d7e9eff23919eb53 /core/ReportRenderer.php
parenta054de65ed078a7786033f8e2793438ecdb65840 (diff)
fixed field visibility keyword order
Diffstat (limited to 'core/ReportRenderer.php')
-rw-r--r--core/ReportRenderer.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/ReportRenderer.php b/core/ReportRenderer.php
index edd54f0a2d..44fc77f632 100644
--- a/core/ReportRenderer.php
+++ b/core/ReportRenderer.php
@@ -33,7 +33,7 @@ abstract class ReportRenderer
const PDF_FORMAT = 'pdf';
const CSV_FORMAT = 'csv';
- static private $availableReportRenderers = array(
+ private static $availableReportRenderers = array(
self::PDF_FORMAT,
self::HTML_FORMAT,
self::CSV_FORMAT,