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.

VariableStore   A
last analyzed

Complexity

Total Complexity 6

Size/Duplication

Total Lines 64
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 1

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 6
c 0
b 0
f 0
lcom 1
cbo 1
dl 0
loc 64
ccs 13
cts 13
cp 1
rs 10

4 Methods

Rating   Name   Duplication   Size   Complexity  
A createPrefix() 0 9 3
A createPrefixName() 0 4 1
A getPrefix() 0 4 1
A setCurrentPrefix() 0 4 1
1
<?php
2
3
/**
4
 * This file is part of the m1\vars library
5
 *
6
 * (c) m1 <[email protected]>
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 *
11
 * @package     m1/vars
12
 * @version     1.1.0
13
 * @author      Miles Croxford <[email protected]>
14
 * @copyright   Copyright (c) Miles Croxford <[email protected]>
15
 * @license     http://github.com/m1/vars/blob/master/LICENSE
16
 * @link        http://github.com/m1/vars/blob/master/README.MD Documentation
17
 */
18
19
namespace M1\Vars\Variables;
20
21
use \M1\Vars\Resource\AbstractResource;
22
23
/**
24
 * Stores the in-file variables
25
 *
26
 * @since 1.0.0
27
 */
28
class VariableStore extends AbstractResource
29
{
30
    /**
31
     * The current prefix for the variable store
32
     *
33
     * @var string $current_prefix
34
     */
35
    private $current_prefix;
36
37
    /**
38
     * The relative prefix for the variable store
39
     *
40
     * @var string $path
41
     */
42
    private $prefix;
43
44
    /**
45
     * Creates a relative prefix for the store
46
     *
47
     * @param bool $relative Is the prefix relative
48
     */
49 77
    public function createPrefix($relative)
50
    {
51 77
        if ($relative) {
52 77
            $this->prefix = (empty($this->current_prefix)) ? '' : $this->current_prefix;
53 77
            return;
54
        }
55
56 7
        $this->prefix = '';
57 7
    }
58
59
    /**
60
     * Creates a new prefix name for the store
61
     *
62
     * @param string $prefix The prefix for the store
63
     * @param string $key The key for the item
64
     *
65
     * @return string The new prefix
66
     */
67 15
    public function createPrefixName($prefix, $key)
68
    {
69 15
        return $prefix.$key.'.';
70
    }
71
72
    /**
73
     * Get the prefix
74
     *
75
     * @return string The prefix
76
     */
77 75
    public function getPrefix()
78
    {
79 75
        return $this->prefix;
80
    }
81
82
    /**
83
     * Sets the current prefix
84
     *
85
     * @param string $prefix The new prefix
86
     */
87 63
    public function setCurrentPrefix($prefix)
88
    {
89 63
        $this->current_prefix = $prefix;
90 63
    }
91
}
92