Command   A
last analyzed

Complexity

Total Complexity 7

Size/Duplication

Total Lines 69
Duplicated Lines 0 %

Coupling/Cohesion

Components 2
Dependencies 0

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 7
lcom 2
cbo 0
dl 0
loc 69
ccs 16
cts 16
cp 1
rs 10
c 0
b 0
f 0

5 Methods

Rating   Name   Duplication   Size   Complexity  
A __construct() 0 9 2
A toString() 0 4 1
A getCmd() 0 4 1
A getOptions() 0 4 1
A getOption() 0 8 2
1
<?php
2
/**
3
 * Nyx
4
 *
5
 * (The MIT license)
6
 * Copyright (c) 2016 Luke Steadman
7
 *
8
 * Permission is hereby granted, free of charge, to any person obtaining a copy
9
 * of this software and associated * documentation files (the "Software"), to
10
 * deal in the Software without restriction, including without limitation the
11
 * rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
12
 * sell copies of the Software, and to permit persons to whom the Software is
13
 * furnished to do so, subject to the following conditions:
14
 * The above copyright notice and this permission notice shall be included in
15
 * all copies or substantial portions of the Software.
16
 *
17
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
18
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
19
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
20
 * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
21
 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
22
 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
23
 * IN THE SOFTWARE.
24
 *
25
 * @package Nyx
26
 */
27
namespace Nyx;
28
29
class Command implements CommandInterface
30
{
31
    /**
32
     * Command string
33
     *
34
     * @var
35
     */
36
    protected $cmd;
37
38
    /**
39
     * Array of options
40
     *
41
     * @var array
42
     */
43
    protected $options = array();
44
45
    /**
46
     * Command constructor.
47
     *
48
     * @param  $cmd
49
     * @param  array|null $options
50
     * @throws \Exception
51
     */
52 18
    public function __construct($cmd, array $options = null)
53
    {
54 18
        if (!is_string($cmd)) {
55 4
            throw new \Exception('$cmd must be a string');
56
        }
57
58 18
        $this->cmd = $cmd;
59 18
        $this->options = (array) $options;
60 18
    }
61
62
    /**
63
     * {@inheritdoc}
64
     */
65 7
    public function toString()
66
    {
67 7
        return (string) $this->cmd;
68
    }
69
70
    /**
71
     * {@inheritdoc}
72
     */
73 9
    public function getCmd()
74
    {
75 9
        return $this->cmd;
76
    }
77
78
    /**
79
     * {@inheritdoc}
80
     */
81 1
    public function getOptions()
82
    {
83 1
        return $this->options;
84
    }
85
86
    /**
87
     * {@inheritdoc}
88
     */
89 8
    public function getOption($option, $default = null)
90
    {
91 8
        if (array_key_exists($option, $this->options)) {
92 1
            return $this->options[$option];
93
        }
94
95 8
        return $default;
96
    }
97
}
98