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.

DefaultControllerTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 1
c 1
b 0
f 0
lcom 0
cbo 0
dl 0
loc 13
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A testIndexAction() 0 4 1
1
<?php
2
3
/*
4
 * For the full copyright and license information, please view the LICENSE
5
 * file that was distributed with this source code.
6
 */
7
8
namespace TMSolution\CronBundle\Tests\Controller;
9
10
use TMSolution\TestingBundle\Functional\AppTestCase;
11
use TMSolution\TestingBundle\Functional\Url;
12
13
/**
14
 * Functional test for TMSolution\CronBundle\Controller\DefaultController 
15
 */
16
class DefaultControllerTest extends AppTestCase
17
{
18
    /**
19
     * Function test for TMSolution\CronBundle\Controller\DefaultController::indexAction
20
     *
21
     * @Url("/hello/{name}")
22
     */
23
    public function testIndexAction()
24
    {
25
        $this->assertTrue(true);
26
    }
27
    
28
}
29