| 1 | <?php |
||
| 6 | class BaseReport implements ReportInterface |
||
| 7 | { |
||
| 8 | const WSDL = 'https://api.bingads.microsoft.com/Api/Advertiser/Reporting/V9/ReportingService.svc?singleWsdl'; |
||
| 9 | const FILE_HEADERS = 10; |
||
| 10 | const COLUMN_HEADERS = 1; |
||
| 11 | |||
| 12 | /** |
||
| 13 | * @var ReportRequest |
||
| 14 | */ |
||
| 15 | protected $reportRequest; |
||
| 16 | |||
| 17 | 17 | public function __construct() |
|
| 21 | |||
| 22 | 4 | protected function createReportRequest() |
|
| 26 | |||
| 27 | /** |
||
| 28 | * {@inheritdoc} |
||
| 29 | */ |
||
| 30 | 1 | public function setFormat($format) |
|
| 34 | |||
| 35 | /** |
||
| 36 | * {@inheritdoc} |
||
| 37 | */ |
||
| 38 | 1 | public function setReturnOnlyCompleteData($returnOnlyCompleteData) |
|
| 42 | |||
| 43 | /** |
||
| 44 | * {@inheritdoc} |
||
| 45 | */ |
||
| 46 | 1 | public function setReportLanguage($language) |
|
| 50 | |||
| 51 | /** |
||
| 52 | * {@inheritdoc} |
||
| 53 | */ |
||
| 54 | 3 | public function getRequest() |
|
| 58 | } |
||
| 59 |