Completed
Push — master ( 294b2e...9a0c7b )
by Morgan
04:19
created
src/Commands/DeployInitCommand.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,9 +33,9 @@
 block discarded – undo
33 33
         $url = parse_url(config('app.url'), PHP_URL_HOST);
34 34
         $ssl = config('auto-deploy.require-ssl') ? 'https' : 'http';
35 35
         $msg = "Here is the information you'll need to set up your webhooks:\n\n".
36
-               "  Payload URL: <comment>$ssl://$url/%s</comment>\n".
37
-               "  Secret Key:  <comment>%s</comment>\n\n".
38
-               "You can display this information again by running `php artisan deploy:info`\n";
36
+                "  Payload URL: <comment>$ssl://$url/%s</comment>\n".
37
+                "  Secret Key:  <comment>%s</comment>\n\n".
38
+                "You can display this information again by running `php artisan deploy:info`\n";
39 39
         $conf = 'Are you sure you want to overwrite the existing keys?';
40 40
         $show = $this->option('show');
41 41
         $over = $this->option('force');
Please login to merge, or discard this patch.
src/Controllers/DeployController.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -119,7 +119,7 @@
 block discarded – undo
119 119
             'Timestamp' => date('r'),
120 120
             'output' => '',
121 121
         ];
122
-        $whitelist = ['backupDatabase','pull','copyEnv','composer','npm','migrate','seed','deploy'];
122
+        $whitelist = ['backupDatabase', 'pull', 'copyEnv', 'composer', 'npm', 'migrate', 'seed', 'deploy'];
123 123
         foreach ($steps as $step) {
124 124
             if (in_array($step, $whitelist) && !$this->{$step}()) {
125 125
                 $this->log->error('Deploy failed.', $this->result);
Please login to merge, or discard this patch.