Completed
Branch master (114b81)
by Sergi Tur
12:06
created
src/Console/Commands/Traits/DiesIfEnvVariableIsnotInstalled.php 1 patch
Doc Comments   +1 added lines patch added patch discarded remove patch
@@ -11,6 +11,7 @@
 block discarded – undo
11 11
 {
12 12
     /**
13 13
      * Skip if env var is not installed.
14
+     * @param string $env_var
14 15
      */
15 16
     protected function dieIfEnvVarIsNotInstalled($env_var)
16 17
     {
Please login to merge, or discard this patch.
src/Console/Commands/Traits/ItFetchesServers.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      * Get server ip addres by forge server id.
62 62
      *
63 63
      * @param $servers
64
-     * @param $server_id
64
+     * @param string $server_id
65 65
      * @return mixed
66 66
      */
67 67
     protected function serverIpAddress($servers, $server_id)
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
      * Search server by property with a specific value.
75 75
      *
76 76
      * @param $servers
77
-     * @param $property
77
+     * @param string $property
78 78
      * @param $value
79 79
      * @return static
80 80
      */
Please login to merge, or discard this patch.
src/Console/Commands/Traits/ItFetchesSites.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
     /**
68 68
      * Get forge site name from site id.
69 69
      *
70
-     * @param $sites
70
+     * @param string $sites
71 71
      * @param $site_id
72 72
      * @return mixed
73 73
      */
@@ -80,7 +80,7 @@  discard block
 block discarded – undo
80 80
     /**
81 81
      * Get forge site id from site name.
82 82
      *
83
-     * @param $sites
83
+     * @param string $sites
84 84
      * @param $site_name
85 85
      * @return mixed
86 86
      */
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.