1 | <?php |
||
7 | class IPv4Address extends IPAddress |
||
8 | { |
||
9 | /** |
||
10 | * Initialize from octets. |
||
11 | * |
||
12 | * @param string $octets |
||
13 | * @throws \InvalidArgumentException |
||
14 | * @return self |
||
15 | */ |
||
16 | 11 | public static function fromOctets(string $octets): self |
|
33 | |||
34 | /** |
||
35 | * |
||
36 | * {@inheritdoc} |
||
37 | */ |
||
38 | 16 | protected function _octets(): string |
|
47 | } |
||
48 |