Credentials   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 42
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
dl 0
loc 42
ccs 8
cts 8
cp 1
rs 10
c 0
b 0
f 0
wmc 3

3 Methods

Rating   Name   Duplication   Size   Complexity  
A getIdentifier() 0 3 1
A getSecret() 0 3 1
A __construct() 0 4 1
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