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:
authorJean Baptiste Noblot <noblot.jb@gmail.com>2020-03-04 19:04:07 +0300
committerGitHub <noreply@github.com>2020-03-04 19:04:07 +0300
commitff2296329e5a702f1513c7c356d86dbf2965c706 (patch)
treea96181c1531b696a0f5d555649a08935585800cd /plugins/Resolution
parentcac7b9c0ba492c6c349fb502c1025c09bdcc22bb (diff)
Fix void return used and "improve" isLeap in Date (#15662)
* let's PHP say is leap or not * try to return a void function
Diffstat (limited to 'plugins/Resolution')
-rw-r--r--plugins/Resolution/Archiver.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/Resolution/Archiver.php b/plugins/Resolution/Archiver.php
index d427a05f58..0866d707df 100644
--- a/plugins/Resolution/Archiver.php
+++ b/plugins/Resolution/Archiver.php
@@ -69,7 +69,7 @@ class Archiver extends \Piwik\Plugin\Archiver
protected function insertTable($recordName, DataTable $table)
{
$report = $table->getSerialized($this->maximumRows, null, Metrics::INDEX_NB_VISITS);
- return $this->getProcessor()->insertBlobRecord($recordName, $report);
+ $this->getProcessor()->insertBlobRecord($recordName, $report);
}
}