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.

DummyLoader   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
lcom 0
cbo 1
dl 0
loc 14
rs 10
c 0
b 0
f 0

1 Method

Rating   Name   Duplication   Size   Complexity  
A load() 0 6 1
1
<?php
2
/**
3
 * Phossa Project
4
 *
5
 * PHP version 5.4
6
 *
7
 * @category  Library
8
 * @package   Phossa2\Config
9
 * @copyright Copyright (c) 2016 phossa.com
10
 * @license   http://mit-license.org/ MIT License
11
 * @link      http://www.phossa.com/
12
 */
13
/*# declare(strict_types=1); */
14
15
namespace Phossa2\Config\Loader;
16
17
use Phossa2\Shared\Base\ObjectAbstract;
18
19
/**
20
 * DummyLoader
21
 *
22
 * @package Phossa2\Config
23
 * @author  Hong Zhang <[email protected]>
24
 * @version 2.0.8
25
 * @since   2.0.0 added
26
 */
27
class DummyLoader extends ObjectAbstract implements ConfigLoaderInterface
28
{
29
    /**
30
     * Always returns empty array
31
     *
32
     * {@inheritDoc}
33
     */
34
    public function load(
35
        /*# string */ $group,
36
        /*# string */ $environment = ''
37
    )/*# : array */ {
38
        return [];
39
    }
40
}
41