Completed
Push — master ( 26d05c...67f6cd )
by Greg
01:23
created
src/SiteProcess.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -145,7 +145,6 @@
 block discarded – undo
145 145
      * It is possible to use dot notation in the keys to access nested elements
146 146
      * within the site alias record.
147 147
      *
148
-     * @param AliasRecord $siteAlias
149 148
      * @param type $args
150 149
      * @return type
151 150
      */
Please login to merge, or discard this patch.
src/Transport/TransportInterface.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -13,6 +13,7 @@  discard block
 block discarded – undo
13 13
     /**
14 14
      * Configure ourselves based on the settings of the process object
15 15
      * (e.g. isTty()).
16
+     * @return void
16 17
      */
17 18
     public function configure(Process $process);
18 19
 
@@ -22,7 +23,6 @@  discard block
 block discarded – undo
22 23
      * alias points at a remote system, though, then the arguments are
23 24
      * escaped and wrapped in an appropriate ssh command.
24 25
      *
25
-     * @param AliasRecord $siteAlias alias record of target site.
26 26
      * @param array $args arguments provided by caller.
27 27
      * @return array command and arguments to execute.
28 28
      */
Please login to merge, or discard this patch.
src/Util/ArgumentProcessor.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,10 +18,10 @@
 block discarded – undo
18 18
      * to be executed and orders them as needed.
19 19
      *
20 20
      * @param AliasRecord $siteAlias Description of
21
-     * @param array $args Command and arguments to execute (source)
22
-     * @param array $options key / value pair of option and value in include
21
+     * @param string $args Command and arguments to execute (source)
22
+     * @param string $options key / value pair of option and value in include
23 23
      *   in final arguments
24
-     * @param array $optionsPassedAsArgs key / value pair of option and value
24
+     * @param string $optionsPassedAsArgs key / value pair of option and value
25 25
      *   to include in final arguments after the '--' argument.
26 26
      * @return array Command and arguments to execute
27 27
      */
Please login to merge, or discard this patch.