Completed
Push — master ( ae4368...d96fc9 )
by Дмитрий
02:34
created

AuthFailed   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 7
ccs 3
cts 3
cp 1
rs 10
c 1
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 4 1
1
<?php
2
/**
3
 * SocialConnect project
4
 * @author: Patsura Dmitry https://github.com/ovr <[email protected]>
5
 */
6
7
namespace SocialConnect\Provider\Exception;
8
9
/**
10
 * This exception is a base exception when we cannot auth user on callback url
11
 */
12
abstract class AuthFailed extends \SocialConnect\Common\Exception
13
{
14 17
    public function __construct($message = 'Auth failed')
15
    {
16 17
        parent::__construct($message);
17 17
    }
18
}
19