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::testLoadModule()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 8
Code Lines 4

Duplication

Lines 0
Ratio 0 %
Metric Value
dl 0
loc 8
rs 9.4285
cc 1
eloc 4
nc 1
nop 0
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