Completed
Pull Request — master (#3)
by Risan Bagja
02:02 queued 34s
created

Credentials::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 4
CRAP Score 1

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 5
ccs 4
cts 4
cp 1
rs 9.4285
c 1
b 0
f 0
cc 1
eloc 3
nc 1
nop 2
crap 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 51
    public function __construct($identifier, $secret)
28
    {
29 51
        $this->identifier = $identifier;
30 51
        $this->secret = $secret;
31 51
    }
32
33
    /**
34
     * {@inheritDoc}
35
     */
36 8
    public function getIdentifier()
37
    {
38 8
        return $this->identifier;
39
    }
40
41
    /**
42
     * {@inheritDoc}
43
     */
44 12
    public function getSecret()
45
    {
46 12
        return $this->secret;
47
    }
48
}
49