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::sayHelloFabien()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 2
Metric Value
dl 0
loc 6
rs 10
c 2
b 0
f 2
cc 1
nc 1
nop 0
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