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-10 17:45:54 +0400
committerChristian Raue <christian.raue@gmail.com>2014-07-15 14:16:49 +0400
commit317bd7e175f04e09cfb6b42f4a282068524df4e0 (patch)
tree2a6c8bc07bc806229bb7f8dc035198e745b34efb /core/Profiler.php
parentf6de9efc06b11e067fe4f866377a94996628f796 (diff)
fixed method signatures
Diffstat (limited to 'core/Profiler.php')
-rw-r--r--core/Profiler.php4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/Profiler.php b/core/Profiler.php
index e3a62f7049..6eeba2c973 100644
--- a/core/Profiler.php
+++ b/core/Profiler.php
@@ -94,7 +94,7 @@ class Profiler
return $a['sum_time_ms'] < $b['sum_time_ms'];
}
- static private function sortTimeDesc($a, $b)
+ private static function sortTimeDesc($a, $b)
{
return $a['sumTimeMs'] < $b['sumTimeMs'];
}
@@ -166,7 +166,7 @@ class Profiler
*
* @param array $infoIndexedByQuery
*/
- static private function getSqlProfilingQueryBreakdownOutput($infoIndexedByQuery)
+ private static function getSqlProfilingQueryBreakdownOutput($infoIndexedByQuery)
{
$output = '<hr /><strong>Breakdown by query</strong><br/>';
foreach ($infoIndexedByQuery as $query => $queryInfo) {