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.
Completed
Push — master ( 5d8585...19996e )
by Alexander
85:54 queued 60:54
created

MethodNotAllowedException::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 1
Metric Value
c 1
b 0
f 1
dl 0
loc 4
ccs 0
cts 4
cp 0
rs 10
cc 1
eloc 2
nc 1
nop 3
crap 2
1
<?php
2
/**
3
 * LeadCommerce\Shopware\SDK\Exception
4
 *
5
 * Copyright 2016 LeadCommerce
6
 *
7
 * @author Alexander Mahrt <[email protected]>
8
 * @copyright 2016 LeadCommerce <[email protected]>
9
 */
10
namespace LeadCommerce\Shopware\SDK\Exception;
11
12
/**
13
 * Class MethodNotAllowedException
14
 *
15
 * @author Alexander Mahrt <[email protected]>
16
 * @copyright 2016 LeadCommerce <[email protected]>
17
 */
18
class MethodNotAllowedException extends \Exception
19
{
20
    /**
21
     * MethodNotAllowedException constructor.
22
     *
23
     * @param string     $message
24
     * @param int        $code
25
     * @param \Exception $previous
26
     */
27
    public function __construct($message = 'Method is not allowed.', $code = 0, \Exception $previous = null)
28
    {
29
        parent::__construct($message, $code, $previous);
30
    }
31
}
32