Completed
Push — master ( 4c45e0...1a7b7a )
by Дмитрий
02:22
created

BitbucketTest::getProviderClassName()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
/**
3
 * SocialConnect project
4
 * @author: Patsura Dmitry https://github.com/ovr <[email protected]>
5
 */
6
7
namespace Test\OAuth2\Provider;
8
9
class BitbucketTest extends AbstractProviderTestCase
10
{
11
    /**
12
     * {@inheritdoc}
13
     */
14
    protected function getProviderClassName()
15
    {
16
        return \SocialConnect\OAuth2\Provider\Bitbucket::class;
17
    }
18
}
19