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:
authorThomas Steur <thomas.steur@gmail.com>2015-08-12 18:23:38 +0300
committerThomas Steur <thomas.steur@gmail.com>2015-08-21 12:48:31 +0300
commit500202b12aa8879c7deb09035792c9aab99f9da2 (patch)
tree47421d728fdb61a5ed09c1a0e943b9a074184e1f /plugins/SitesManager
parentaa8591b6e58fa5e9964cacc405493abe7bb80eaf (diff)
refs #8066 faster query to find websites with traffic since last successful archiving
Diffstat (limited to 'plugins/SitesManager')
-rw-r--r--plugins/SitesManager/API.php1
-rw-r--r--plugins/SitesManager/Model.php4
2 files changed, 3 insertions, 2 deletions
diff --git a/plugins/SitesManager/API.php b/plugins/SitesManager/API.php
index 43f5b65661..77a563ef03 100644
--- a/plugins/SitesManager/API.php
+++ b/plugins/SitesManager/API.php
@@ -263,6 +263,7 @@ class API extends \Piwik\Plugin\API
*
* @param bool|int $timestamp
* @return array The list of website IDs
+ * @deprecated since 2.15 This method will be removed in Piwik 3.0, there is no replacement.
*/
public function getSitesIdWithVisits($timestamp = false)
{
diff --git a/plugins/SitesManager/Model.php b/plugins/SitesManager/Model.php
index 6a78a493c7..62372510ac 100644
--- a/plugins/SitesManager/Model.php
+++ b/plugins/SitesManager/Model.php
@@ -80,8 +80,8 @@ class Model
/**
* Returns the list of the website IDs that received some visits since the specified timestamp.
*
- * @param \Piwik\Date $time
- * @param \Piwik\Date $now
+ * @param string $time
+ * @param string $now
* @return array The list of website IDs
*/
public function getSitesWithVisits($time, $now)