Completed
Push — master ( 29bda6...e00326 )
by David
9s
created

Fake::getAuthorizationEndpoint()   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\OAuth2\Service;
4
5
use OAuth\OAuth2\Service\AbstractService;
6
7
class Fake extends AbstractService
8
{
9
    const SCOPE_FOO    = 'https://www.pieterhordijk.com/auth';
10
    const SCOPE_CUSTOM = 'custom';
11
12
    /**
13
     * {@inheritdoc}
14
     */
15
    public function getAuthorizationEndpoint()
16
    {
17
    }
18
19
    /**
20
     * {@inheritdoc}
21
     */
22
    public function getAccessTokenEndpoint()
23
    {
24
    }
25
26
    /**
27
     * {@inheritdoc}
28
     */
29
    protected function parseAccessTokenResponse($responseBody)
30
    {
31
    }
32
}
33