Passed
Pull Request — develop (#13)
by Alessandro
01:33
created

Auth::setToken()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
ccs 2
cts 2
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
/**
3
 * Created by PhpStorm.
4
 * User: aless
5
 * Date: 13/03/2019
6
 * Time: 14:13
7
 */
8
9
namespace Bitlywrap\Auth;
10
11
use Bitlywrap\Interfaces\AuthInterface;
12
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 2
    public function __construct(string $token)
26
    {
27 2
        $this->setToken($token);
28 2
    }
29
30
    /**
31
     * Prepare the headers for successive implementations
32
     *
33
     * @return array
34
     */
35 1
    public function getHeaders(): array
36
    {
37
        $headers = [
38 1
            'Authorization: Bearer '.$this->getToken(),
39 1
            'Accept'        => 'application/json',
40 1
            'Content-Type'  => 'application/json'
41
        ];
42 1
        return $headers;
43
    }
44
45
    /**
46
     * @param $token
47
     */
48 2
    private function setToken($token)
49
    {
50 2
        $this->token = $token;
51 2
    }
52
53
54
    /**
55
     * @return string
56
     */
57 1
    private function getToken()
58
    {
59 1
        return $this->token;
60
    }
61
}
62