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.
Passed
Branch dev (d5e133)
by Андрей
20:27 queued 13s
created

ModuleTest   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2
Metric Value
wmc 1
lcom 0
cbo 2
dl 0
loc 15
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A testLoadModule() 0 8 1
1
<?php
2
/**
3
 * @link    https://github.com/old-town/workflow-zf2-dispatch
4
 * @author  Malofeykin Andrey  <[email protected]>
5
 */
6
namespace OldTown\Workflow\ZF2\Dispatch\PhpUnit\Test;
7
8
use OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData\TestPaths;
9
use Zend\Test\PHPUnit\Controller\AbstractHttpControllerTestCase;
10
11
12
/**
13
 * Class ModuleTest
14
 *
15
 * @package OldTown\Workflow\ZF2\Dispatch\PhpUnit\Test
16
 */
17
class ModuleTest extends AbstractHttpControllerTestCase
18
{
19
    /**
20
     *
21
     * @return void
22
     */
23
    public function testLoadModule()
24
    {
25
        /** @noinspection PhpIncludeInspection */
26
        $this->setApplicationConfig(
27
            include TestPaths::getPathToIntegrationTest()
28
        );
29
        $this->assertModulesLoaded(['OldTown\Workflow\ZF2\Dispatch']);
30
    }
31
}
32