| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 7 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php |
||
| 22 | 22 | public function __construct($value) |
|
| 23 | { |
||
| 24 | 22 | if (!is_string($value)) { |
|
| 25 | 4 | throw new \InvalidArgumentException(sprintf('Expected string and got %s', gettype($value))); |
|
| 26 | } |
||
| 27 | |||
| 28 | 18 | if (false === filter_var($value, FILTER_VALIDATE_MAC)) { |
|
| 29 | 12 | throw new \InvalidArgumentException('Invalid MAC address.'); |
|
| 30 | } |
||
| 31 | |||
| 32 | 6 | $this->value = $value; |
|
| 33 | 6 | } |
|
| 34 | |||
| 43 |