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