Passed
Push — develop ( 7fbd2c...82694f )
by nguereza
02:49
created
src/Detector/AbstractDetector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
         $match = null;
119 119
         $matches = [];
120 120
 
121
-        while ($i < $regexLength && ! $matches) {
121
+        while ($i < $regexLength && !$matches) {
122 122
             $reg = $regex[$i];
123 123
             $property = $regex[$i + 1];
124 124
 
@@ -126,7 +126,7 @@  discard block
 block discarded – undo
126 126
             $k = 0;
127 127
 
128 128
             $regLength = count($reg);
129
-            while ($j < $regLength && ! $matches) {
129
+            while ($j < $regLength && !$matches) {
130 130
                 $pattern = $reg[$j++];
131 131
                 if (is_string($pattern)) {
132 132
                     preg_match($pattern, $userAgent, $matches);
Please login to merge, or discard this patch.