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.

CacheStrategyPluginManagerFactory   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 15
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 2

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __invoke() 0 9 1
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\Strategy\CacheStrategyPluginManager;
12
use Zend\ServiceManager\Config as ServiceManagerConfig;
13
use Zend\ServiceManager\Factory\FactoryInterface;
14
15
class CacheStrategyPluginManagerFactory implements FactoryInterface
16
{
17
    /**
18
     * {@inheritDoc}
19
     */
20
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
21
    {
22
        $config = $container->get('Config');
23
24
        return new CacheStrategyPluginManager(
25
            $container,
26
            $config['strokercache']['strategies']['plugin_manager']
27
        );
28
    }
29
}
30