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.

ConfigutationTest::testIsInstanceOf()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
cc 1
eloc 3
nc 1
nop 0
1
<?php
2
namespace OnurbTest\Bundle\YumlBundle\DependencyInjection;
3
4
use Onurb\Bundle\YumlBundle\DependencyInjection\Configuration;
5
use PHPUnit\Framework\TestCase;
6
7
class ConfigutationTest extends TestCase
8
{
9
10
    /**
11
     * @covers Onurb\Bundle\YumlBundle\DependencyInjection\Configuration
12
     */
13
    public function testIsInstanceOf()
14
    {
15
        $configuration = new Configuration();
16
        $this->assertInstanceOf("Symfony\\Component\\Config\\Definition\\ConfigurationInterface", $configuration);
17
    }
18
19
    /**
20
     * @covers Onurb\Bundle\YumlBundle\DependencyInjection\Configuration
21
     */
22
    public function testGetConfigBuilderInstanceOf()
23
    {
24
        $configuration = new Configuration();
25
        $return = $configuration->getConfigTreeBuilder();
26
        $this->assertInstanceOf('Symfony\\Component\\Config\\Definition\\Builder\\TreeBuilder', $return);
27
    }
28
}
29