Conditions | 3 |
Paths | 4 |
Total Lines | 10 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Tests | 8 |
CRAP Score | 3 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
32 | 12 | public function __construct(array $config) |
|
33 | { |
||
34 | 12 | $this->name = $config['name']; |
|
35 | 12 | $this->value = $config['value']; |
|
36 | 12 | $this->description = isset($config['description']) ? $config['description'] : NULL; |
|
37 | |||
38 | 12 | if (isset($config['deprecationReason'])) { |
|
39 | 6 | $this->deprecationReason = $config['deprecationReason']; |
|
40 | 6 | } |
|
41 | 12 | } |
|
42 | |||
75 |