GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.

CurlException   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 2
dl 0
loc 12
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
namespace Kobas\APIClient\Exception;
4
5
/**
6
 * Class CurlException
7
 * @package Kobas\APIClient\Exception
8
 */
9
class CurlException extends \Exception
10
{
11
12
    /**
13
     * CurlException constructor.
14
     *
15
     * @param $message
16
     * @param $code
17
     */
18 3
    public function __construct($message, $code)
19
    {
20 3
        parent::__construct($message, $code);
21 3
    }
22
}
23