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
Pull Request — master (#83)
by
unknown
11:42
created

DataCollector::reset()   A

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
c 1
b 0
f 0
dl 0
loc 3
ccs 0
cts 2
cp 0
rs 10
cc 1
eloc 1
nc 1
nop 0
crap 2
1
<?php
2
3
/*
4
 * This file is part of the CoreSphereConsoleBundle.
5
 *
6
 * (c) Laszlo Korte <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace CoreSphere\ConsoleBundle\DataCollector;
13
14
use Symfony\Component\HttpFoundation\Request;
15
use Symfony\Component\HttpFoundation\Response;
16
use Symfony\Component\HttpKernel\DataCollector\DataCollector as DataCollectorBase;
17
18
final class DataCollector extends DataCollectorBase
19
{
20
    /**
21
     * {@inheritdoc}
22
     */
23 1
    public function collect(Request $request, Response $response, \Exception $exception = null)
24
    {
25 1
    }
26
27
    /**
28
     * {@inheritdoc}
29
     */
30 1
    public function getName()
31
    {
32 1
        return 'coresphere_console';
33
    }
34
35
    /**
36
     * Resets this data collector to its initial state.
37
     */
38
    public function reset()
39
    {
40
    }
41
}
42