@@ -36,10 +36,10 @@ discard block |
||
36 | 36 | * @see https://en.wikipedia.org/wiki/Classful_network |
37 | 37 | */ |
38 | 38 | const CLASS_A = "A", |
39 | - CLASS_B = "B", |
|
40 | - CLASS_C = "C", |
|
41 | - CLASS_D = "D", |
|
42 | - CLASS_E = "E"; |
|
39 | + CLASS_B = "B", |
|
40 | + CLASS_C = "C", |
|
41 | + CLASS_D = "D", |
|
42 | + CLASS_E = "E"; |
|
43 | 43 | |
44 | 44 | /** |
45 | 45 | * IPv4 addresses are stored as a 32 bits integer |
@@ -404,7 +404,7 @@ discard block |
||
404 | 404 | * @param self $address |
405 | 405 | * @return bool |
406 | 406 | */ |
407 | - public function match(Address $address) |
|
407 | + public function match(Address $address) |
|
408 | 408 | { |
409 | 409 | return $this->int() == $address->int(); |
410 | 410 | } |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | */ |
149 | 149 | public function offsetExists($offset) |
150 | 150 | { |
151 | - if (is_string($offset)) |
|
151 | + if (is_string($offset)) |
|
152 | 152 | { |
153 | 153 | if (!preg_match('/^-?[0-9]+$/', $offset)) |
154 | 154 | { |
@@ -156,7 +156,7 @@ discard block |
||
156 | 156 | } |
157 | 157 | $offset = (int)$offset; |
158 | 158 | } |
159 | - if (!is_int($offset)) |
|
159 | + if (!is_int($offset)) |
|
160 | 160 | { |
161 | 161 | throw new InvalidArgumentException(sprintf('Invalid key type (%s), only integers or strings representing integers can be used to acces address in a Range', gettype($offset))); |
162 | 162 | } |
@@ -24,7 +24,6 @@ discard block |
||
24 | 24 | * * Countable : number of addresses |
25 | 25 | * * ArrayAccess : Address can be acceesed by offset (ex : $range[10]) |
26 | 26 | * * IteratorAggregate : range can be itrated (foreach) |
27 | - |
|
28 | 27 | * @package IPTools |
29 | 28 | */ |
30 | 29 | class Subnet extends Range |
@@ -34,15 +33,15 @@ discard block |
||
34 | 33 | */ |
35 | 34 | protected $netmask; |
36 | 35 | |
37 | - /** |
|
38 | - * Creates an IP Subnet from a an IP network addresses and a netamsk |
|
39 | - * |
|
40 | - * Lower and upper bound are automaticly choosen, no need to choose wich one to pass first. |
|
41 | - * Only |
|
42 | - * |
|
43 | - * @param Address $baseAddress the first address of the range |
|
44 | - * @param int $count the number other bound |
|
45 | - */ |
|
36 | + /** |
|
37 | + * Creates an IP Subnet from a an IP network addresses and a netamsk |
|
38 | + * |
|
39 | + * Lower and upper bound are automaticly choosen, no need to choose wich one to pass first. |
|
40 | + * Only |
|
41 | + * |
|
42 | + * @param Address $baseAddress the first address of the range |
|
43 | + * @param int $count the number other bound |
|
44 | + */ |
|
46 | 45 | public function __construct(Address $network, Address $netmask) |
47 | 46 | { |
48 | 47 | if (!($netmask instanceof Netmask)) |
@@ -64,7 +63,7 @@ discard block |
||
64 | 63 | $this->netmask = $netmask; |
65 | 64 | } |
66 | 65 | |
67 | - /** |
|
66 | + /** |
|
68 | 67 | * Construct an IPv4 Subnet from a CIDR notation (#.#.#.#/#) |
69 | 68 | * |
70 | 69 | * @param Address $network the network base address of the subnet |
@@ -153,7 +152,7 @@ discard block |
||
153 | 152 | return static::fromCidr( |
154 | 153 | $this->getNetworkAddress()->shift($offset*count($this)), |
155 | 154 | $this->getNetmaskAddress()->asCidr() |
156 | - ); |
|
155 | + ); |
|
157 | 156 | } |
158 | 157 | |
159 | 158 | /* |