Total Complexity | 4 |
Total Lines | 46 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
13 | class Auth implements AuthInterface |
||
14 | { |
||
15 | /** |
||
16 | * @var string |
||
17 | */ |
||
18 | private $token; |
||
19 | |||
20 | /** |
||
21 | * AuthInterface constructor. |
||
22 | * |
||
23 | * @param string $token |
||
24 | */ |
||
25 | 10 | public function __construct($token) |
|
28 | 10 | } |
|
29 | |||
30 | /** |
||
31 | * Prepare the headers for successive implementations |
||
32 | * |
||
33 | * @return array |
||
34 | */ |
||
35 | 9 | public function getHeaders() |
|
36 | { |
||
37 | return [ |
||
38 | 9 | 'Authorization' => 'Bearer '.$this->getToken(), |
|
39 | 9 | 'Accept' => 'application/json', |
|
40 | 9 | 'Content-Type' => 'application/json' |
|
41 | ]; |
||
42 | } |
||
43 | |||
44 | /** |
||
45 | * @param $token |
||
46 | */ |
||
47 | 10 | private function setToken($token) |
|
48 | { |
||
49 | 10 | $this->token = $token; |
|
50 | 10 | } |
|
51 | |||
52 | |||
53 | /** |
||
54 | * @return string |
||
55 | */ |
||
56 | 9 | private function getToken() |
|
59 | } |
||
60 | } |
||
61 |