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:
authordiosmosis <benaka@piwik.pro>2015-07-11 05:13:40 +0300
committerdiosmosis <benaka@piwik.pro>2015-08-06 17:37:59 +0300
commit25613735e5467806b33f651dbeffb16570851646 (patch)
tree95b6b5786de760e0984a4a730b71a35d65b3f696 /plugins/Heartbeat
parentd337b5f19acf28eb1522d32dff7af07a9b775020 (diff)
Document RequestProcessors and tweak some RequestProcessors.
Diffstat (limited to 'plugins/Heartbeat')
-rw-r--r--plugins/Heartbeat/Tracker/PingRequestProcessor.php6
1 files changed, 4 insertions, 2 deletions
diff --git a/plugins/Heartbeat/Tracker/PingRequestProcessor.php b/plugins/Heartbeat/Tracker/PingRequestProcessor.php
index 3e4decabf4..20144aa6f9 100644
--- a/plugins/Heartbeat/Tracker/PingRequestProcessor.php
+++ b/plugins/Heartbeat/Tracker/PingRequestProcessor.php
@@ -13,7 +13,9 @@ use Piwik\Tracker\RequestProcessor;
use Piwik\Tracker\Visit\VisitProperties;
/**
- * TODO
+ * Handles ping tracker requests.
+ *
+ * Defines no request metadata.
*/
class PingRequestProcessor extends RequestProcessor
{
@@ -49,4 +51,4 @@ class PingRequestProcessor extends RequestProcessor
{
return $request->getParam('ping') == 1;
}
-} \ No newline at end of file
+}