We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d8859e3 + f7ae49d commit 136cb8cCopy full SHA for 136cb8c
src/Address.php
@@ -9,14 +9,19 @@ class Address
9
protected $address;
10
11
protected $v4 = [
12
+ '0.0.0.0/8',
13
'10.0.0.0/8',
14
+ '127.0.0.0/8',
15
'172.16.0.0/12',
- '192.168.0.0/16'
16
+ '192.168.0.0/16',
17
+ '169.254.0.0/16'
18
];
19
20
protected $v6 = [
21
+ '::1/128',
22
'fc00::/7',
- 'fd00::/8'
23
+ 'fd00::/8',
24
+ 'fe80::/10',
25
26
27
public function __construct($address)
0 commit comments