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 — master ( 84c999...d04245 )
by Scott van
06:21
created

ConfigLocator::__construct()   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
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
/**
3
 * Copyright (c) 2013-2014 eBay Enterprise, Inc.
4
 *
5
 * NOTICE OF LICENSE
6
 *
7
 * This source file is subject to the Open Software License (OSL 3.0)
8
 * that is bundled with this package in the file LICENSE.md.
9
 * It is also available through the world-wide-web at this URL:
10
 * http://opensource.org/licenses/osl-3.0.php
11
 *
12
 * @copyright   Copyright (c) 2013-2014 eBay Enterprise, Inc. (http://www.ebayenterprise.com/)
13
 * @license     http://opensource.org/licenses/osl-3.0.php  Open Software License (OSL 3.0)
14
 */
15
16
namespace eBayEnterprise\RetailOrderManagement\Payload;
17
18
/**
19
 * Payload locator using injected configuration for describing how to construct
20
 * various types of payloads.
21
 */
22
class ConfigLocator extends AbstractConfigLocator
23
{
24
    /** @var array */
25
    protected $config;
26
27
    /**
28
     * @param array $config Payload locator configuration
29
     */
30
    public function __construct(array $config = [])
31
    {
32
        $this->config = $config;
33
    }
34
35
    /**
36
     * Get the blob of config data.
37
     *
38
     * @return array
39
     */
40
    protected function getConfig()
41
    {
42
        return $this->config;
43
    }
44
}
45