@@ -2,8 +2,8 @@ |
||
2 | 2 | |
3 | 3 | namespace Morphatic\AutoDeploy\Commands; |
4 | 4 | |
5 | -use Illuminate\Support\Str; |
|
6 | 5 | use Illuminate\Console\Command; |
6 | +use Illuminate\Support\Str; |
|
7 | 7 | use Symfony\Component\Console\Input\InputOption; |
8 | 8 | |
9 | 9 | class DeployInitCommand extends Command |
@@ -32,9 +32,9 @@ |
||
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); |
@@ -75,8 +75,8 @@ discard block |
||
75 | 75 | /** |
76 | 76 | * Create a new DeployController instance. |
77 | 77 | * |
78 | - * @param Morphatic\AutoDeploy\Origins\OriginInterface $origin The origin of the webhook |
|
79 | - * @param AdamBrett\ShellWrapper\Runners\Exec $exec The shell command execution class |
|
78 | + * @param OriginInterface $origin The origin of the webhook |
|
79 | + * @param Exec $exec The shell command execution class |
|
80 | 80 | */ |
81 | 81 | public function __construct(OriginInterface $origin, Exec $exec) |
82 | 82 | { |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | /** |
132 | 132 | * Runs a shell command, logs, and handles the result. |
133 | 133 | * |
134 | - * @param AdamBrett\ShellWrapper\CommandInterface $cmd The text of the command to be run |
|
134 | + * @param CommandInterface $cmd The text of the command to be run |
|
135 | 135 | * |
136 | 136 | * @return bool True if the command was successful, false on error |
137 | 137 | */ |
@@ -2,16 +2,15 @@ |
||
2 | 2 | |
3 | 3 | namespace Morphatic\AutoDeploy\Controllers; |
4 | 4 | |
5 | -use Log; |
|
6 | -use Mail; |
|
7 | -use Monolog\Logger; |
|
8 | -use Illuminate\Http\Request; |
|
9 | -use Illuminate\Routing\Controller; |
|
10 | 5 | use AdamBrett\ShellWrapper\Command\Builder as Command; |
11 | 6 | use AdamBrett\ShellWrapper\Command\CommandInterface; |
12 | 7 | use AdamBrett\ShellWrapper\Runners\Exec; |
8 | +use Illuminate\Routing\Controller; |
|
9 | +use Log; |
|
10 | +use Mail; |
|
13 | 11 | use Monolog\Formatter\HtmlFormatter; |
14 | 12 | use Monolog\Handler\SwiftMailerHandler; |
13 | +use Monolog\Logger; |
|
15 | 14 | use Morphatic\AutoDeploy\Origins\OriginInterface; |
16 | 15 | |
17 | 16 | class DeployController extends Controller |
@@ -117,7 +117,7 @@ |
||
117 | 117 | 'Timestamp' => date('r'), |
118 | 118 | 'output' => '', |
119 | 119 | ]; |
120 | - $whitelist = ['backupDatabase','pull','composer','npm','migrate','seed','deploy']; |
|
120 | + $whitelist = ['backupDatabase', 'pull', 'composer', 'npm', 'migrate', 'seed', 'deploy']; |
|
121 | 121 | foreach ($steps as $step) { |
122 | 122 | if (in_array($step, $whitelist) && !$this->{$step}()) { |
123 | 123 | $this->log->error('Deploy failed.', $this->result); |
@@ -36,9 +36,9 @@ |
||
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); |