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.

TestPaths   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 22
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

2 Methods

Rating   Name   Duplication   Size   Complexity  
A getPathToModule() 0 4 1
A getPathToIntegrationTest() 0 4 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\TestData;
7
8
/**
9
 * Class TestPaths
10
 *
11
 * @package OldTown\Workflow\ZF2\Dispatch\PhpUnit\TestData
12
 */
13
class TestPaths
14
{
15
    /**
16
     * Путь до директории где находится файл инициирующий приложение
17
     *
18
     * @return string
19
     */
20
    public static function getPathToModule()
21
    {
22
        return __DIR__ . '/../../../';
23
    }
24
25
    /**
26
     * Путь до дефалтового конфига приложения
27
     *
28
     * @return string
29
     */
30
    public static function getPathToIntegrationTest()
31
    {
32
        return __DIR__ . '/../_files/IntegrationTest/application.config.php';
33
    }
34
}
35