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:
authorsgiehl <stefan@piwik.org>2013-07-06 20:00:00 +0400
committersgiehl <stefan@piwik.org>2013-07-06 20:00:00 +0400
commitbfd7e1fa5d0df717d7e715a99cd741d76229f7d4 (patch)
tree88bb71abcb142612013781d0f3915734cb2dce7e /plugins/DevicesDetection/API.php
parent1f787b2c435d7e5b2e33d2aeffa821eccb546bf7 (diff)
fixed several doc blocks
Diffstat (limited to 'plugins/DevicesDetection/API.php')
-rw-r--r--plugins/DevicesDetection/API.php30
1 files changed, 15 insertions, 15 deletions
diff --git a/plugins/DevicesDetection/API.php b/plugins/DevicesDetection/API.php
index 8e82b49416..6f638e7f72 100644
--- a/plugins/DevicesDetection/API.php
+++ b/plugins/DevicesDetection/API.php
@@ -54,8 +54,8 @@ class Piwik_DevicesDetection_API
* @param int $idSite
* @param string $period
* @param string $date
- * @param string $segment
- * @return DataTable
+ * @param bool|string $segment
+ * @return Piwik_DataTable
*/
public function getType($idSite, $period, $date, $segment = false)
{
@@ -71,8 +71,8 @@ class Piwik_DevicesDetection_API
* @param int $idSite
* @param string $period
* @param string $date
- * @param string $segment
- * @return DataTable
+ * @param bool|string $segment
+ * @return Piwik_DataTable
*/
public function getBrand($idSite, $period, $date, $segment = false)
{
@@ -87,8 +87,8 @@ class Piwik_DevicesDetection_API
* @param int $idSite
* @param string $period
* @param string $date
- * @param string $segment
- * @return DataTable
+ * @param bool|string $segment
+ * @return Piwik_DataTable
*/
public function getModel($idSite, $period, $date, $segment = false)
{
@@ -102,8 +102,8 @@ class Piwik_DevicesDetection_API
* @param int $idSite
* @param string $period
* @param string $date
- * @param string $segment
- * @return DataTable
+ * @param bool|string $segment
+ * @return Piwik_DataTable
*/
public function getOsFamilies($idSite, $period, $date, $segment = false)
{
@@ -118,8 +118,8 @@ class Piwik_DevicesDetection_API
* @param int $idSite
* @param string $period
* @param string $date
- * @param string $segment
- * @return DataTable
+ * @param bool|string $segment
+ * @return Piwik_DataTable
*/
public function getOsVersions($idSite, $period, $date, $segment = false)
{
@@ -132,11 +132,11 @@ class Piwik_DevicesDetection_API
/**
* Gets datatable displaying number of visits by Browser family (eg. Firefox, InternetExplorer)
- * @param int $idSite
+ * @param int $idSite
* @param string $period
* @param string $date
- * @param string $segment
- * @return DataTable
+ * @param bool|string $segment
+ * @return Piwik_DataTable
*/
public function getBrowserFamilies($idSite, $period, $date, $segment = false)
{
@@ -151,8 +151,8 @@ class Piwik_DevicesDetection_API
* @param int $idSite
* @param string $period
* @param string $date
- * @param string $segment
- * @return DataTable
+ * @param bool|string $segment
+ * @return Piwik_DataTable
*/
public function getBrowserVersions($idSite, $period, $date, $segment = false)
{