@@ -36,11 +36,11 @@ |
||
36 | 36 | |
37 | 37 | private function registerDeployCommands() |
38 | 38 | { |
39 | - $this->app->singleton('command.morphatic.deployinit', function ($app) { |
|
39 | + $this->app->singleton('command.morphatic.deployinit', function($app) { |
|
40 | 40 | return $app['Morphatic\AutoDeploy\Commands\DeployInitCommand']; |
41 | 41 | }); |
42 | 42 | |
43 | - $this->app->singleton('command.morphatic.deployinfo', function ($app) { |
|
43 | + $this->app->singleton('command.morphatic.deployinfo', function($app) { |
|
44 | 44 | return $app['Morphatic\AutoDeploy\Commands\DeployInfoCommand']; |
45 | 45 | }); |
46 | 46 |
@@ -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); |
@@ -32,9 +32,9 @@ |
||
32 | 32 | $path = base_path('.env'); |
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 webhooks:\n\n". |
35 | - " Payload URL: <comment>https://$url/%s</comment>\n". |
|
36 | - " Secret Key: <comment>%s</comment>\n\n". |
|
37 | - "You can display this information again by running `php artisan deploy:info`\n"; |
|
35 | + " Payload URL: <comment>https://$url/%s</comment>\n". |
|
36 | + " Secret Key: <comment>%s</comment>\n\n". |
|
37 | + "You can display this information again by running `php artisan deploy:info`\n"; |
|
38 | 38 | $conf = 'Are you sure you want to overwrite the existing keys?'; |
39 | 39 | $show = $this->option('show'); |
40 | 40 | $over = $this->option('force'); |
@@ -31,7 +31,7 @@ |
||
31 | 31 | * |
32 | 32 | * Follows the procedure described here: https://developer.github.com/webhooks/securing/ |
33 | 33 | * |
34 | - * @return bool Returns true if the request is authentic. False otherwise. |
|
34 | + * @return null|boolean Returns true if the request is authentic. False otherwise. |
|
35 | 35 | */ |
36 | 36 | public function isAuthentic() |
37 | 37 | { |