Conditions | 2 |
Paths | 2 |
Total Lines | 10 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Tests | 6 |
CRAP Score | 2 |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
15 | 4 | public function __construct($value) |
|
16 | { |
||
17 | 4 | $filteredValue = filter_var($value, FILTER_VALIDATE_MAC); |
|
18 | |||
19 | 4 | if ($filteredValue === false) { |
|
20 | 2 | throw new InvalidNativeArgumentException($value, array('string (valid Mac address)')); |
|
21 | } |
||
22 | |||
23 | 2 | $this->value = $filteredValue; |
|
24 | 2 | } |
|
25 | } |
||
26 |