Passed
Push — master ( bc1873...151d9b )
by Darko
12:38
created
app/Console/Commands/ProcessAdditionalGuid.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -37,7 +37,7 @@  discard block
 block discarded – undo
37 37
         $guid = '';
38 38
 
39 39
         if ($idOpt !== null && $idOpt !== '') {
40
-            if (! ctype_digit((string) $idOpt)) {
40
+            if (!ctype_digit((string) $idOpt)) {
41 41
                 $this->error('Release ID must be numeric.');
42 42
 
43 43
                 return 5; // invalid id format
@@ -83,7 +83,7 @@  discard block
 block discarded – undo
83 83
         $processor = new ProcessAdditional;
84 84
         $ok = $processor->processSingleGuid($guid);
85 85
 
86
-        if (! $ok) {
86
+        if (!$ok) {
87 87
             $this->error('Processing failed or nothing processed for '.($idOpt ? 'ID '.$idOpt : 'GUID '.$guid).'.');
88 88
 
89 89
             return 3;
Please login to merge, or discard this patch.