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/WidgetsList.php
parenta054de65ed078a7786033f8e2793438ecdb65840 (diff)
fixed field visibility keyword order
Diffstat (limited to 'core/WidgetsList.php')
-rw-r--r--core/WidgetsList.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/WidgetsList.php b/core/WidgetsList.php
index d155121ddb..d9ae1f4eb6 100644
--- a/core/WidgetsList.php
+++ b/core/WidgetsList.php
@@ -28,21 +28,21 @@ class WidgetsList extends Singleton
*
* @var array
*/
- static protected $widgets = array();
+ protected static $widgets = array();
/**
* Indicates whether the hook was posted or not
*
* @var bool
*/
- static protected $hookCalled = false;
+ protected static $hookCalled = false;
/**
* In get() we won't use a cached result in case this is true. Instead we will sort the widgets again and cache
* a new result. To make tests work...
* @var bool
*/
- static private $listCacheToBeInvalidated = false;
+ private static $listCacheToBeInvalidated = false;
/**
* Returns all available widgets.