@@ -210,7 +210,7 @@ |
||
210 | 210 | * to request the report identifier. The identifier is used to check report generation status |
211 | 211 | * before downloading the report. |
212 | 212 | * |
213 | - * @param mixed $report |
|
213 | + * @param ReportRequest $report |
|
214 | 214 | * @param string $name |
215 | 215 | * |
216 | 216 | * @return string ReportRequestId |
@@ -279,7 +279,7 @@ |
||
279 | 279 | } |
280 | 280 | |
281 | 281 | /** |
282 | - * @param $code |
|
282 | + * @param integer $code |
|
283 | 283 | * @return SoapFault |
284 | 284 | */ |
285 | 285 | private function generateSoapFault($code) |
@@ -5,21 +5,24 @@ |
||
5 | 5 | { |
6 | 6 | /** |
7 | 7 | * @param string $format (See BingAds SDK documentation) |
8 | + * @return void |
|
8 | 9 | */ |
9 | 10 | public function setFormat($format); |
10 | 11 | |
11 | 12 | /** |
12 | 13 | * @param bool $returnOnlyCompleteData |
14 | + * @return void |
|
13 | 15 | */ |
14 | 16 | public function setReturnOnlyCompleteData($returnOnlyCompleteData); |
15 | 17 | |
16 | 18 | /** |
17 | 19 | * @param string $language (See BingAds SDK documentation) |
20 | + * @return void |
|
18 | 21 | */ |
19 | 22 | public function setReportLanguage($language); |
20 | 23 | |
21 | 24 | /** |
22 | - * @return mixed |
|
25 | + * @return \BingAds\Reporting\ReportRequest |
|
23 | 26 | */ |
24 | 27 | public function getRequest(); |
25 | 28 | } |