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 ( 99078a...9605c1 )
by Oanh
02:49
created

Context   A

Complexity

Total Complexity 8

Size/Duplication

Total Lines 97
Duplicated Lines 0 %

Coupling/Cohesion

Components 1
Dependencies 0

Test Coverage

Coverage 100%
Metric Value
wmc 8
lcom 1
cbo 0
dl 0
loc 97
ccs 21
cts 21
cp 1
rs 10

8 Methods

Rating   Name   Duplication   Size   Complexity  
A push() 0 4 1
A get() 0 4 1
A pop() 0 4 1
A getEnvironment() 0 4 1
A getInput() 0 4 1
A getOutput() 0 4 1
A getServer() 0 4 1
A __construct() 0 7 1
1
<?php
2
/* (c) Anton Medvedev <[email protected]>
3
 *
4
 * For the full copyright and license information, please view the LICENSE
5
 * file that was distributed with this source code.
6
 */
7
8
namespace Deployer\Task;
9
10
use Deployer\Server\Environment;
11
use Deployer\Server\ServerInterface;
12
use Symfony\Component\Console\Input\InputInterface;
13
use Symfony\Component\Console\Output\OutputInterface;
14
15
class Context
16
{
17
    /**
18
     * @var ServerInterface|null
19
     */
20
    private $server;
21
22
    /**
23
     * @var Environment|null
24
     */
25
    private $env;
26
27
    /**
28
     * @var InputInterface|null
29
     */
30
    private $input;
31
32
    /**
33
     * @var OutputInterface|null
34
     */
35
    private $output;
36
37
    /**
38
     * @var Context[]
39
     */
40
    private static $contexts = [];
41
42
    /**
43
     * @param ServerInterface|null $server
44
     * @param Environment|null $env
45
     * @param InputInterface|null $input
46
     * @param OutputInterface|null $output
47
     */
48 23
    public function __construct($server, $env, $input, $output)
49
    {
50 23
        $this->server = $server;
51 23
        $this->env = $env;
52 23
        $this->input = $input;
53 23
        $this->output = $output;
54 23
    }
55
56
    /**
57
     * @param Context $context
58
     */
59 25
    public static function push(Context $context)
60
    {
61 25
        self::$contexts[] = $context;
62 25
    }
63
64
    /**
65
     * @return Context|false
66
     */
67 19
    public static function get()
68
    {
69 19
        return end(self::$contexts);
70
    }
71
    
72
    /**
73
     * @return Context
74
     */
75 25
    public static function pop()
76
    {
77 25
        return array_pop(self::$contexts);
78
    }
79
80
    /**
81
     * @return Environment|null
82
     */
83 17
    public function getEnvironment()
84
    {
85 17
        return $this->env;
86
    }
87
88
    /**
89
     * @return InputInterface|null
90
     */
91 1
    public function getInput()
92
    {
93 1
        return $this->input;
94
    }
95
96
    /**
97
     * @return OutputInterface|null
98
     */
99 14
    public function getOutput()
100
    {
101 14
        return $this->output;
102
    }
103
104
    /**
105
     * @return ServerInterface|null
106
     */
107 15
    public function getServer()
108
    {
109 15
        return $this->server;
110
    }
111
}
112