Passed
Push — master ( b9347d...4a07d3 )
by Zing
05:42 queued 10s
created
src/Commands/SmsSwitchConnectionCommand.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
     protected function getOptions()
37 37
     {
38 38
         return [
39
-            new InputOption('show', 's', InputOption::VALUE_NONE,'Display the sms default connection instead of modifying files'),
39
+            new InputOption('show', 's', InputOption::VALUE_NONE, 'Display the sms default connection instead of modifying files'),
40 40
             new InputOption('always-no', null, InputOption::VALUE_NONE, 'Skip generating sms default connection if it already exists'),
41 41
             new InputOption('force', 'f', InputOption::VALUE_NONE, 'Skip confirmation when overwriting an existing sms default connection'),
42 42
         ];
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         $connection = $this->argument('connection');
61 61
 
62 62
         if ($this->option('show')) {
63
-            $this->comment('SMS_CONNECTION='.$connection);
63
+            $this->comment('SMS_CONNECTION=' . $connection);
64 64
 
65 65
             return;
66 66
         }
Please login to merge, or discard this patch.
src/SmsServiceProvider.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -52,7 +52,7 @@
 block discarded – undo
52 52
             }
53 53
         );
54 54
         $this->app->alias('sms', Sms::class);
55
-        $this->app->singleton('command.sms.gateway',SmsSwitchConnectionCommand::class);
55
+        $this->app->singleton('command.sms.gateway', SmsSwitchConnectionCommand::class);
56 56
         $this->commands([
57 57
             'command.sms.gateway'
58 58
         ]);
Please login to merge, or discard this patch.