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.

CacheControllerFactory::__invoke()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 3
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\Controller\CacheController;
12
use StrokerCache\Service\CacheService;
13
use Zend\ServiceManager\Factory\FactoryInterface;
14
15
class CacheControllerFactory implements FactoryInterface
16
{
17
    /**
18
     * {@inheritDoc}
19
     */
20
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
21
    {
22
        return new CacheController($container->get(CacheService::class));
23
    }
24
}
25