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.

InvalidServiceIdentifierException   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 8
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 2
dl 0
loc 8
c 0
b 0
f 0
rs 10
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 3 1
1
<?php
2
3
declare(strict_types=1);
4
5
/* (c) Anton Medvedev <[email protected]>
6
 *
7
 * For the full copyright and license information, please view the LICENSE
8
 * file that was distributed with this source code.
9
 */
10
11
namespace Deployer\Component\Pimple\Exception;
12
13
use Psr\Container\NotFoundExceptionInterface;
14
15
/**
16
 * An attempt to perform an operation that requires a service identifier was made.
17
 *
18
 * @author Pascal Luna <[email protected]>
19
 */
20
class InvalidServiceIdentifierException extends \InvalidArgumentException implements NotFoundExceptionInterface
21
{
22
    /**
23
     * @param string $id The invalid identifier
24
     */
25
    public function __construct(string $id)
26
    {
27
        parent::__construct(\sprintf('Identifier "%s" does not contain an object definition.', $id));
28
    }
29
}
30