Completed
Push — master ( d66b80...474a37 )
by Konrad
05:52
created
src/Util/VersionHelper.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -43,9 +43,9 @@
 block discarded – undo
43 43
         $latestArray[0] = $latestArray[0][0] == 'v' ? substr($latestArray[0], 1) : $latestArray[0];
44 44
 
45 45
         if ($stableArray[0] != $latestArray[0] || (isset($stableArray[1]) && isset($latestArray[1]) && $stableArray[1] != $latestArray[1])) {
46
-            $state =  self::STATE_OUT_OF_DATE;
46
+            $state = self::STATE_OUT_OF_DATE;
47 47
         } else if (isset($stableArray[2]) && isset($latestArray[2]) && $stableArray[2] != $latestArray[2]) {
48
-            $state =  self::STATE_PINNED_OUT_OF_DATE;
48
+            $state = self::STATE_PINNED_OUT_OF_DATE;
49 49
         }
50 50
 
51 51
         // ToDo: The satisfies function didn't worked as expected. For example the constraint ~4.1 is not satisfying the version 4.9.5.
Please login to merge, or discard this patch.
tests/bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -1,6 +1,6 @@
 block discarded – undo
1 1
 <?php
2 2
 
3
-call_user_func(function () {
3
+call_user_func(function() {
4 4
     if (!is_file($autoloadFile = __DIR__ . '/../vendor/autoload.php')) {
5 5
         throw new \RuntimeException('Did not find vendor/autoload.php. Did you run "composer install --dev"?');
6 6
     }
Please login to merge, or discard this patch.