Completed
Pull Request — master (#21)
by Greg
01:33
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/ProcessBase.php 1 patch
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,6 +50,9 @@  discard block
 block discarded – undo
50 50
         return $this->output;
51 51
     }
52 52
 
53
+    /**
54
+     * @return \Symfony\Component\Console\Output\OutputInterface
55
+     */
53 56
     protected function realtimeStderr()
54 57
     {
55 58
         if ($this->stderr) {
@@ -165,7 +168,7 @@  discard block
 block discarded – undo
165 168
     /**
166 169
      * Return a realTime output object.
167 170
      *
168
-     * @return callable
171
+     * @return RealtimeOutputHandler
169 172
      */
170 173
     public function showRealtime()
171 174
     {
Please login to merge, or discard this patch.
src/Util/RealtimeOutputHandler.php 1 patch
Doc Comments   +2 added lines patch added patch discarded remove patch
@@ -109,6 +109,8 @@
 block discarded – undo
109 109
 
110 110
     /**
111 111
      * Make sure that every line in $buffer begins with a MARKER_ERR.
112
+     * @param string $buffer
113
+     * @param string $marker
112 114
      */
113 115
     protected function addMarker($buffer, $marker)
114 116
     {
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.
src/Transport/TransportInterface.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -16,6 +16,7 @@  discard block
 block discarded – undo
16 16
     /**
17 17
      * Configure ourselves based on the settings of the process object
18 18
      * (e.g. isTty()).
19
+     * @return void
19 20
      */
20 21
     public function configure(Process $process);
21 22
 
@@ -25,7 +26,6 @@  discard block
 block discarded – undo
25 26
      * alias points at a remote system, though, then the arguments are
26 27
      * escaped and wrapped in an appropriate ssh command.
27 28
      *
28
-     * @param AliasRecord $siteAlias alias record of target site.
29 29
      * @param array $args arguments provided by caller.
30 30
      * @return array command and arguments to execute.
31 31
      */
@@ -33,6 +33,7 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * addChdir adds an appropriate 'chdir' / 'cd' command for the transport.
36
+     * @param string $cd
36 37
      */
37 38
     public function addChdir($cd, $args);
38 39
 }
Please login to merge, or discard this patch.