Passed
Push — master ( 476838...a43025 )
by Matthieu
02:00
created
src/Iterators/RangeIterator.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -92,8 +92,7 @@
 block discarded – undo
92 92
         try
93 93
         {
94 94
             $this->range[$this->index];       
95
-        }
96
-        catch(\Exception $e)
95
+        } catch(\Exception $e)
97 96
         {
98 97
             return false;
99 98
         }
Please login to merge, or discard this patch.
src/Iterators/SubnetIterator.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -93,8 +93,7 @@
 block discarded – undo
93 93
         try
94 94
         {
95 95
             $this->subnet[$this->index];       
96
-        }
97
-        catch(\Exception $e)
96
+        } catch(\Exception $e)
98 97
         {
99 98
             return false;
100 99
         }
Please login to merge, or discard this patch.
src/IPv4/Range.php 1 patch
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -89,8 +89,7 @@
 block discarded – undo
89 89
         if ($count<0)
90 90
         {
91 91
             $delta = $count+1;
92
-        }
93
-        else
92
+        } else
94 93
         {
95 94
             $delta = $count-1;
96 95
         }
Please login to merge, or discard this patch.