Passed
Push — master ( a06116...c43f53 )
by Pascal
01:13 queued 12s
created
lib/SSpkS/Package/PackageFilter.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -105,7 +105,7 @@
 block discarded – undo
105 105
         if ($this->filterFwVersion === false) {
106 106
             return true;
107 107
         }
108
-        if(version_compare(/** @scrutinizer ignore-type */ $this->filterFwVersion, '7', '<'))
108
+        if (version_compare(/** @scrutinizer ignore-type */ $this->filterFwVersion, '7', '<'))
109 109
             return $this->isMatchingFirmwareVersionPre7($package);
110 110
         return $this->isMatchingFirmwareVersionPost7($package);
111 111
     }
Please login to merge, or discard this patch.
Braces   +3 added lines, -2 removed lines patch added patch discarded remove patch
@@ -105,8 +105,9 @@
 block discarded – undo
105 105
         if ($this->filterFwVersion === false) {
106 106
             return true;
107 107
         }
108
-        if(version_compare(/** @scrutinizer ignore-type */ $this->filterFwVersion, '7', '<'))
109
-            return $this->isMatchingFirmwareVersionPre7($package);
108
+        if(version_compare(/** @scrutinizer ignore-type */ $this->filterFwVersion, '7', '<')) {
109
+                    return $this->isMatchingFirmwareVersionPre7($package);
110
+        }
110 111
         return $this->isMatchingFirmwareVersionPost7($package);
111 112
     }
112 113
 
Please login to merge, or discard this patch.