Completed
Push — master ( f0c745...274b6a )
by Sergi Tur
01:40
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.