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:
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) {