Completed
Push — master ( 913bce...ed0758 )
by Matthieu
03:23
created
src/IPv4/Subnet.php 1 patch
Indentation   +9 added lines, -10 removed lines patch added patch discarded remove patch
@@ -24,7 +24,6 @@  discard block
 block discarded – undo
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,13 +33,13 @@  discard block
 block discarded – undo
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
-     * @param Address $baseAddress the first address of the range
41
-     * @param int $count the number  other bound
42
-     * @param bool $strict if true $network
43
-     */
36
+        /**
37
+         * Creates an IP Subnet from a an IP network addresses and a netamsk
38
+         *
39
+         * @param Address $baseAddress the first address of the range
40
+         * @param int $count the number  other bound
41
+         * @param bool $strict if true $network
42
+         */
44 43
     public function __construct(Address $network, Address $netmask, bool $strict=true)
45 44
     {
46 45
         $finalNetmask = clone($netmask);
@@ -61,7 +60,7 @@  discard block
 block discarded – undo
61 60
         $this->netmask = $finalNetmask;
62 61
     }
63 62
 
64
-   /**
63
+    /**
65 64
      * Construct an IPv4 Subnet from a CIDR notation (#.#.#.#/#)
66 65
      *
67 66
      * @param Address $network the network base address  of the subnet
@@ -168,7 +167,7 @@  discard block
 block discarded – undo
168 167
         return static::fromCidr(
169 168
             $this->getNetworkAddress()->shift($offset*count($this)),
170 169
             $this->getNetmaskAddress()->asCidr()
171
-         );
170
+            );
172 171
     }
173 172
 
174 173
     /*
Please login to merge, or discard this patch.