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:33:05 +0400
committerChristian Raue <christian.raue@gmail.com>2014-07-19 12:31:14 +0400
commita054de65ed078a7786033f8e2793438ecdb65840 (patch)
tree110445c993b4bee9584a020ce20fca53adabeb8e /plugins/Actions/ArchivingHelper.php
parent6f079639d0dd47dfc2b023a7cb0bcb6b69c066eb (diff)
fixed method visibility keyword order
Diffstat (limited to 'plugins/Actions/ArchivingHelper.php')
-rw-r--r--plugins/Actions/ArchivingHelper.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/plugins/Actions/ArchivingHelper.php b/plugins/Actions/ArchivingHelper.php
index 908375d032..48b08d7407 100644
--- a/plugins/Actions/ArchivingHelper.php
+++ b/plugins/Actions/ArchivingHelper.php
@@ -38,7 +38,7 @@ class ArchivingHelper
* @param array $actionsTablesByType
* @return int
*/
- static public function updateActionsTableWithRowQuery($query, $fieldQueried, & $actionsTablesByType)
+ public static function updateActionsTableWithRowQuery($query, $fieldQueried, & $actionsTablesByType)
{
$rowsProcessed = 0;
while ($row = $query->fetch()) {
@@ -294,7 +294,7 @@ class ArchivingHelper
static protected $defaultActionNameWhenNotDefined = null;
static protected $defaultActionUrlWhenNotDefined = null;
- static public function reloadConfig()
+ public static function reloadConfig()
{
// for BC, we read the old style delimiter first (see #1067)Row
$actionDelimiter = @Config::getInstance()->General['action_category_delimiter'];
@@ -320,7 +320,7 @@ class ArchivingHelper
*
* @return Row
*/
- static private function getDefaultRow()
+ private static function getDefaultRow()
{
static $row = false;
if ($row === false) {
@@ -390,7 +390,7 @@ class ArchivingHelper
* @param $type
* @return string
*/
- static public function getUnknownActionName($type)
+ public static function getUnknownActionName($type)
{
if (empty(self::$defaultActionNameWhenNotDefined)) {
self::$defaultActionNameWhenNotDefined = Piwik::translate('General_NotDefined', Piwik::translate('Actions_ColumnPageName'));
@@ -425,7 +425,7 @@ class ArchivingHelper
* @param int $urlPrefix url prefix (only used for TYPE_PAGE_URL)
* @return array of exploded elements from $name
*/
- static public function getActionExplodedNames($name, $type, $urlPrefix = null)
+ public static function getActionExplodedNames($name, $type, $urlPrefix = null)
{
// Site Search does not split Search keywords
if ($type == Action::TYPE_SITE_SEARCH) {