1 | <?php |
||
8 | final class MacAddress extends Natural |
||
9 | { |
||
10 | public function __construct($value) |
||
26 | |||
27 | /** |
||
28 | * @param string $value |
||
29 | * @return MacAddress |
||
30 | * @throws InvalidNativeArgumentException |
||
31 | */ |
||
32 | public static function fromString($value) |
||
42 | |||
43 | /** |
||
44 | * @return string |
||
45 | */ |
||
46 | public function toStringWithDash() |
||
50 | |||
51 | /** |
||
52 | * @return string |
||
53 | */ |
||
54 | public function toStringWithColon() |
||
58 | |||
59 | /** |
||
60 | * @return string |
||
61 | */ |
||
62 | public function toStringWithDot() |
||
66 | } |
||
67 |