Completed
Push — master ( cc0a72...294b2e )
by Morgan
03:23
created
src/AutoDeployServiceProvider.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -36,11 +36,11 @@
 block discarded – undo
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
 
Please login to merge, or discard this patch.
src/Controllers/DeployController.php 3 patches
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
      */
Please login to merge, or discard this patch.
Unused Use Statements   +4 added lines, -5 removed lines patch added patch discarded remove patch
@@ -2,16 +2,15 @@
 block discarded – undo
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
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -117,7 +117,7 @@
 block discarded – undo
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);
Please login to merge, or discard this patch.
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
         $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');
Please login to merge, or discard this patch.
src/Origins/Github.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@
 block discarded – undo
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
     {
Please login to merge, or discard this patch.