Conditions | 1 |
Paths | 1 |
Total Lines | 11 |
Code Lines | 8 |
Lines | 0 |
Ratio | 0 % |
Tests | 4 |
CRAP Score | 1.1715 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
19 | 2 | public function __construct($name, $href, $templated, array $resources) |
|
20 | { |
||
21 | 2 | Validator::validateParamString('name', $name); |
|
22 | 1 | Validator::validateParamString('href', $href); |
|
23 | 1 | Validator::validateParamBool('templated', $templated); |
|
24 | |||
25 | $this->name = $name; |
||
26 | $this->href = $href; |
||
27 | $this->templated = $templated; |
||
28 | $this->resources = $resources; |
||
29 | } |
||
30 | |||
63 |