Completed
Push — master ( 76c4af...25f226 )
by Morgan
23:24
created
src/Commands/DeployInitCommand.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -32,9 +32,9 @@
 block discarded – undo
32 32
         $route = $this->getRandomKey($this->laravel['config']['app.cipher']);
33 33
         $url = parse_url(config('app.url'), PHP_URL_HOST);
34 34
         $msg = "Here is the information you'll need to set up your webhook:\n\n".
35
-               "Payload URL: <comment>https://$url/{$route[1]}</comment>\n".
36
-               "Secret: <comment>{$secret[1]}</comment>\n\n".
37
-               "You can display this information again by running `php artisan deploy:info`\n";
35
+                "Payload URL: <comment>https://$url/{$route[1]}</comment>\n".
36
+                "Secret: <comment>{$secret[1]}</comment>\n\n".
37
+                "You can display this information again by running `php artisan deploy:info`\n";
38 38
 
39 39
         if ($this->option('show')) {
40 40
             return $this->line($msg);
Please login to merge, or discard this patch.
src/Commands/DeployInfoCommand.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -36,9 +36,9 @@
 block discarded – undo
36 36
                 preg_match('/AUTODEPLOY_ROUTE=(\S+)/', $env_content, $route)) {
37 37
                 $url = parse_url(config('app.url'), PHP_URL_HOST);
38 38
                 $message = "Here is the information you'll need to set up your webhook:\n\n".
39
-                           "Payload URL: <comment>https://$url/{$route[1]}</comment>\n".
40
-                           "Secret: <comment>{$secret[1]}</comment>\n\n".
41
-                           "You can display this information again by running `php artisan deploy:info`\n";
39
+                            "Payload URL: <comment>https://$url/{$route[1]}</comment>\n".
40
+                            "Secret: <comment>{$secret[1]}</comment>\n\n".
41
+                            "You can display this information again by running `php artisan deploy:info`\n";
42 42
             }
43 43
         }
44 44
         $this->info($message);
Please login to merge, or discard this patch.