Passed
Push — master ( 21423b...66b27a )
by Darko
12:03 queued 01:41
created
app/Console/Commands/UpdateBinaries.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -60,11 +60,11 @@  discard block
 block discarded – undo
60 60
             if ($groupName && !is_numeric($groupName)) {
61 61
                 $this->outputHeader('Updating Single Group');
62 62
                 $this->outputInfo("Group: {$groupName}");
63
-                $this->outputInfo('Max headers: ' . number_format($maxHeaders));
63
+                $this->outputInfo('Max headers: '.number_format($maxHeaders));
64 64
                 $this->updateSingleGroup($binaries, $groupName, $maxHeaders);
65 65
             } else {
66 66
                 $this->outputHeader('Updating All Groups');
67
-                $this->outputInfo('Max headers: ' . number_format($maxHeaders));
67
+                $this->outputInfo('Max headers: '.number_format($maxHeaders));
68 68
                 $binaries->updateAllGroups($maxHeaders);
69 69
             }
70 70
 
@@ -73,7 +73,7 @@  discard block
 block discarded – undo
73 73
             return self::SUCCESS;
74 74
         } catch (\Throwable $e) {
75 75
             Log::error($e->getMessage());
76
-            $this->colorCLI->error('Error: ' . $e->getMessage());
76
+            $this->colorCLI->error('Error: '.$e->getMessage());
77 77
 
78 78
             return self::FAILURE;
79 79
         }
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
 
119 119
         echo PHP_EOL;
120 120
         $this->colorCLI->header('NNTmux Binary Update');
121
-        $this->colorCLI->info('Started: ' . now()->format('Y-m-d H:i:s'));
121
+        $this->colorCLI->info('Started: '.now()->format('Y-m-d H:i:s'));
122 122
     }
123 123
 
124 124
     /**
Please login to merge, or discard this patch.