Completed
Pull Request — master (#479)
by Andrey
03:26
created

Fake::getAccessTokenEndpoint()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
eloc 1
nc 1
nop 0
1
<?php
2
3
namespace OAuthTest\Mocks\OAuth1\Service;
4
5
use OAuth\OAuth1\Service\AbstractService;
6
use OAuth\Common\Consumer\CredentialsInterface;
7
use OAuth\Common\Http\Client\ClientInterface;
8
use OAuth\Common\Storage\TokenStorageInterface;
9
use OAuth\OAuth1\Signature\SignatureInterface;
10
use OAuth\Common\Http\Uri\UriInterface;
11
12
class Fake extends AbstractService
13
{
14
    public function __construct(
15
        CredentialsInterface $credentials,
16
        ClientInterface $httpClient,
17
        TokenStorageInterface $storage,
18
        SignatureInterface $signature,
19
        UriInterface $baseApiUri = null
20
    ) {
21
    }
22
23
    /**
24
     * {@inheritdoc}
25
     */
26
    public function getRequestTokenEndpoint()
27
    {
28
    }
29
30
    /**
31
     * {@inheritdoc}
32
     */
33
    public function getAuthorizationEndpoint()
34
    {
35
    }
36
37
    /**
38
     * {@inheritdoc}
39
     */
40
    public function getAccessTokenEndpoint()
41
    {
42
    }
43
44
    /**
45
     * {@inheritdoc}
46
     */
47
    protected function parseRequestTokenResponse($responseBody)
48
    {
49
    }
50
51
    /**
52
     * {@inheritdoc}
53
     */
54
    protected function parseAccessTokenResponse($responseBody)
55
    {
56
    }
57
}
58