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.

ModuleOptionsFactory   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 13
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 7 2
1
<?php
2
/**
3
 * @author Bram Gerritsen [email protected]
4
 * @copyright (c) Bram Gerritsen 2013
5
 * @license http://opensource.org/licenses/mit-license.php
6
 */
7
8
namespace StrokerCache\Factory;
9
10
use Interop\Container\ContainerInterface;
11
use StrokerCache\Options\ModuleOptions;
12
use Zend\ServiceManager\Factory\FactoryInterface;
13
14
class ModuleOptionsFactory implements FactoryInterface
15
{
16
    /**
17
     * {@inheritDoc}
18
     */
19
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
20
    {
21
        $config = $container->get('Config');
22
        $config = isset($config['strokercache']) ? $config['strokercache'] : [];
23
24
        return new ModuleOptions($config);
25
    }
26
}
27