Total Complexity | 3 |
Total Lines | 35 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
7 | class BaseInvoker |
||
8 | { |
||
9 | use HasSubInvoker; |
||
10 | |||
11 | /** |
||
12 | * @var array |
||
13 | */ |
||
14 | protected $providers = []; |
||
15 | |||
16 | /** |
||
17 | * @var string |
||
18 | */ |
||
19 | protected $responseType; |
||
20 | |||
21 | /** |
||
22 | * @return string |
||
23 | */ |
||
24 | protected function getResponseType() |
||
27 | } |
||
28 | |||
29 | /** |
||
30 | * @param string $responseType |
||
31 | */ |
||
32 | protected function setResponseType($responseType) |
||
35 | } |
||
36 | |||
37 | public function __construct($advertiserId, $accessToken, $responseType = 'array') |
||
44 |