Completed
Push — master ( 1a9054...517ec1 )
by Sergi Tur
02:06
created
src/Console/Commands/PublishServer.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     /**
45 45
      * Env var to set.
46 46
      *
47
-     * @return mixed
47
+     * @return string
48 48
      */
49 49
     protected function envVar()
50 50
     {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * Argument key.
56 56
      *
57
-     * @return mixed
57
+     * @return string
58 58
      */
59 59
     protected function argKey()
60 60
     {
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     /**
65 65
      * Question text.
66 66
      *
67
-     * @return mixed
67
+     * @return string
68 68
      */
69 69
     protected function questionText()
70 70
     {
Please login to merge, or discard this patch.
src/Console/Commands/PublishSiteDirectory.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     /**
45 45
      * Env var to set.
46 46
      *
47
-     * @return mixed
47
+     * @return string
48 48
      */
49 49
     protected function envVar()
50 50
     {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * Argument key.
56 56
      *
57
-     * @return mixed
57
+     * @return string
58 58
      */
59 59
     protected function argKey()
60 60
     {
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     /**
65 65
      * Question text.
66 66
      *
67
-     * @return mixed
67
+     * @return string
68 68
      */
69 69
     protected function questionText()
70 70
     {
Please login to merge, or discard this patch.
src/Console/Commands/PublishSite.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     /**
45 45
      * Env var to set.
46 46
      *
47
-     * @return mixed
47
+     * @return string
48 48
      */
49 49
     protected function envVar()
50 50
     {
@@ -54,7 +54,7 @@  discard block
 block discarded – undo
54 54
     /**
55 55
      * Argument key.
56 56
      *
57
-     * @return mixed
57
+     * @return string
58 58
      */
59 59
     protected function argKey()
60 60
     {
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     /**
65 65
      * Question text.
66 66
      *
67
-     * @return mixed
67
+     * @return string
68 68
      */
69 69
     protected function questionText()
70 70
     {
Please login to merge, or discard this patch.
src/Console/Commands/Traits/RunsSSHCommands.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -17,6 +17,7 @@
 block discarded – undo
17 17
      * @param $file
18 18
      * @param null $server
19 19
      * @param bool $verbose
20
+     * @param string $destination_path
20 21
      */
21 22
     protected function runScp($file, $destination_path, $server = null, $verbose = false)
22 23
     {
Please login to merge, or discard this patch.
src/Console/Commands/Traits/AborstIfEnvVariableIsnotInstalled.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -13,6 +13,7 @@
 block discarded – undo
13 13
 {
14 14
     /**
15 15
      * Skip if env var is not installed.
16
+     * @param string $env_var
16 17
      */
17 18
     protected function abortsIfEnvVarIsNotInstalled($env_var)
18 19
     {
Please login to merge, or discard this patch.
src/Console/Commands/PublishDeleteAssignment.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Acacha\ForgePublish\Commands\Traits\AborstIfEnvVariableIsnotInstalled;
6 6
 use Acacha\ForgePublish\Commands\Traits\InteractsWithAssignments;
7 7
 use Acacha\ForgePublish\Commands\Traits\InteractsWithEnvironment;
8
-use Acacha\ForgePublish\Commands\Traits\InteractsWithLocalGithub;
9 8
 use Acacha\ForgePublish\Commands\Traits\ItFetchesAssignments;
10 9
 use GuzzleHttp\Client;
11 10
 use Illuminate\Console\Command;
Please login to merge, or discard this patch.
src/Console/Commands/PublishShowAssignment.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Acacha\ForgePublish\Commands\Traits\AborstIfEnvVariableIsnotInstalled;
6 6
 use Acacha\ForgePublish\Commands\Traits\InteractsWithAssignments;
7 7
 use Acacha\ForgePublish\Commands\Traits\InteractsWithEnvironment;
8
-use Acacha\ForgePublish\Commands\Traits\InteractsWithLocalGithub;
9 8
 use Acacha\ForgePublish\Commands\Traits\ItFetchesAssignments;
10 9
 use GuzzleHttp\Client;
11 10
 use Illuminate\Console\Command;
Please login to merge, or discard this patch.
src/Console/Commands/PublishUpdateAssignment.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -5,7 +5,6 @@
 block discarded – undo
5 5
 use Acacha\ForgePublish\Commands\Traits\AborstIfEnvVariableIsnotInstalled;
6 6
 use Acacha\ForgePublish\Commands\Traits\InteractsWithAssignments;
7 7
 use Acacha\ForgePublish\Commands\Traits\InteractsWithEnvironment;
8
-use Acacha\ForgePublish\Commands\Traits\InteractsWithLocalGithub;
9 8
 use Acacha\ForgePublish\Commands\Traits\ItFetchesAssignments;
10 9
 use GuzzleHttp\Client;
11 10
 use Illuminate\Console\Command;
Please login to merge, or discard this patch.