1 | <?php |
||
4 | class ParsedHeaders { |
||
5 | /** |
||
6 | * @var array |
||
7 | */ |
||
8 | private $acceptableMIMETypes; |
||
9 | private $APIKey; |
||
10 | private $contentType; |
||
11 | |||
12 | /** |
||
13 | * ParsedHeader constructor. |
||
14 | * @param $contentType |
||
15 | * @param array $acceptableMIMETypes |
||
16 | * @param $APIKey |
||
17 | */ |
||
18 | public function __construct($contentType, array $acceptableMIMETypes, $APIKey) { |
||
23 | |||
24 | public function getContentType() { |
||
27 | |||
28 | public function getAcceptableMIMETypes(): array { |
||
31 | |||
32 | public function getAPIKey() { |
||
35 | } |
||
36 |