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 (#88)
by
unknown
19:24
created

DataCollector   A

Complexity

Total Complexity 3

Size/Duplication

Total Lines 21
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 3
c 0
b 0
f 0
lcom 0
cbo 1
dl 0
loc 21
ccs 4
cts 4
cp 1
rs 10

3 Methods

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