InvalidProviderConfiguration::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
nc 1
nop 3
dl 0
loc 3
ccs 0
cts 2
cp 0
crap 2
rs 10
c 1
b 0
f 0
1
<?php
2
/**
3
 * SocialConnect project
4
 * @author: Patsura Dmitry https://github.com/ovr <[email protected]>
5
 */
6
declare(strict_types=1);
7
8
namespace SocialConnect\Provider\Exception;
9
10
use Throwable;
11
12
class InvalidProviderConfiguration extends \SocialConnect\Common\Exception
13
{
14
    /**
15
     * @param string $message
16
     * @param int $code
17
     * @param Throwable|null $previous
18
     */
19
    public function __construct(string $message, $code = 0, ?Throwable $previous = null)
20
    {
21
        parent::__construct($message, $code, $previous);
22
    }
23
}
24