Credentials::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 3
CRAP Score 1

Importance

Changes 0
Metric Value
cc 1
eloc 2
nc 1
nop 2
dl 0
loc 4
ccs 3
cts 3
cp 1
crap 1
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Risan\OAuth1\Credentials;
4
5
abstract class Credentials implements CredentialsInterface
6
{
7
    /**
8
     * The credentials identifier.
9
     *
10
     * @var string
11
     */
12
    protected $identifier;
13
14
    /**
15
     * The credentials shared-secret.
16
     *
17
     * @var string
18
     */
19
    protected $secret;
20
21
    /**
22
     * Creaate the new Crendentials class instance.
23
     *
24
     * @param string $identifier
25
     * @param string $secret
26
     */
27 59
    public function __construct($identifier, $secret)
28
    {
29 59
        $this->identifier = $identifier;
30 59
        $this->secret = $secret;
31 59
    }
32
33
    /**
34
     * {@inheritdoc}
35
     */
36 9
    public function getIdentifier()
37
    {
38 9
        return $this->identifier;
39
    }
40
41
    /**
42
     * {@inheritdoc}
43
     */
44 15
    public function getSecret()
45
    {
46 15
        return $this->secret;
47
    }
48
}
49