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.

DummyTest   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 12
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A sayHelloFabien() 0 6 1
1
<?php
2
3
namespace Acme;
4
5
/**
6
 * Description of DummyTest
7
 *
8
 * @author isidromerayo
9
 */
10
class DummyTest extends \PHPUnit_Framework_TestCase
11
{
12
    /**
13
     * @test
14
     */
15
    public function sayHelloFabien()
16
    {
17
        $expected = 'Hello Fabien';
18
        $actual = \Acme\Dummy::sayHello('Fabien');
19
        $this->assertEquals($expected, $actual);
20
    }
21
}
22