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.
Completed
Push — issue-44 ( e14363 )
by Bram
04:40
created

CacheStorageFactory::createService()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
dl 0
loc 4
rs 10
c 1
b 0
f 0
cc 1
eloc 2
nc 1
nop 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 Interop\Container\Exception\ContainerException;
12
use StrokerCache\Options\ModuleOptions;
13
use Zend\Cache\StorageFactory;
14
use Zend\ServiceManager\Exception\ServiceNotCreatedException;
15
use Zend\ServiceManager\Exception\ServiceNotFoundException;
16
use Zend\ServiceManager\Factory\FactoryInterface;
17
18
class CacheStorageFactory implements FactoryInterface
19
{
20
    /**
21
     * Create an object
22
     *
23
     * @param  ContainerInterface $container
24
     * @param  string $requestedName
25
     * @param  null|array $options
26
     * @return object
27
     * @throws ServiceNotFoundException if unable to resolve the service.
28
     * @throws ServiceNotCreatedException if an exception is raised when
29
     *     creating a service.
30
     * @throws ContainerException if any other error occurs
31
     */
32
    public function __invoke(ContainerInterface $container, $requestedName, array $options = null)
33
    {
34
        /** @var $options ModuleOptions */
35
        $options = $container->get(ModuleOptions::class);
36
        $adapterOptions = ['adapter' => $options->getStorageAdapter()];
37
38
        return StorageFactory::factory($adapterOptions);
39
    }
40
}
41