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/PDFReports
parent1f787b2c435d7e5b2e33d2aeffa821eccb546bf7 (diff)
fixed several doc blocks
Diffstat (limited to 'plugins/PDFReports')
-rw-r--r--plugins/PDFReports/API.php13
1 files changed, 7 insertions, 6 deletions
diff --git a/plugins/PDFReports/API.php b/plugins/PDFReports/API.php
index 4858f62ebe..20d5567120 100644
--- a/plugins/PDFReports/API.php
+++ b/plugins/PDFReports/API.php
@@ -76,7 +76,7 @@ class Piwik_PDFReports_API
* @param string $reportFormat 'pdf', 'html' or any other format provided via the PDFReports.getReportFormats hook
* @param array $reports array of reports
* @param array $parameters array of parameters
- * @param int $idSegment Segment Identifier
+ * @param bool|int $idSegment Segment Identifier
*
* @return int idReport generated
*/
@@ -199,12 +199,13 @@ class Piwik_PDFReports_API
/**
* Returns the list of reports matching the passed parameters
*
- * @param int $idSite If specified, will filter reports that belong to a specific idsite
- * @param string $period If specified, will filter reports that are scheduled for this period (day,week,month)
- * @param int $idReport If specified, will filter the report that has the given idReport
- * @param int $idSegment If specified, will filter the report that has the given idSegment
+ * @param bool|int $idSite If specified, will filter reports that belong to a specific idsite
+ * @param bool|string $period If specified, will filter reports that are scheduled for this period (day,week,month)
+ * @param bool|int $idReport If specified, will filter the report that has the given idReport
+ * @param bool $ifSuperUserReturnOnlySuperUserReports
+ * @param bool|int $idSegment If specified, will filter the report that has the given idSegment
+ * @throws Exception
* @return array
- * @throws Exception if $idReport was specified but the report wasn't found
*/
public function getReports($idSite = false, $period = false, $idReport = false, $ifSuperUserReturnOnlySuperUserReports = false, $idSegment = false)
{