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 (#86)
by
unknown
14:06
created

DataCollector   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 24
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 66.67%

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
c 1
b 0
f 0
lcom 0
cbo 1
dl 0
loc 24
ccs 4
cts 6
cp 0.6667
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A collect() 0 3 1
A reset() 0 3 1
A getName() 0 4 1
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
    public function reset()
31
    {
32
    }
33
34
    /**
35
     * {@inheritdoc}
36
     */
37 1
    public function getName()
38
    {
39 1
        return 'coresphere_console';
40
    }
41
}
42