Completed
Push — master ( 9bb56c...ef52f6 )
by Greg
01:23
created
src/Remo/RemoCommands.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -3,8 +3,6 @@
 block discarded – undo
3 3
 namespace Consolidation\SiteProcess\Remo;
4 4
 
5 5
 use Consolidation\SiteProcess\SiteProcess;
6
-
7
-use Consolidation\SiteAlias\SiteAliasManagerAwareInterface;
8 6
 use Consolidation\SiteAlias\SiteAliasManagerAwareTrait;
9 7
 use Consolidation\SiteAlias\SiteAliasManager;
10 8
 
Please login to merge, or discard this patch.
src/Util/RealtimeOutputHandler.php 2 patches
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.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,6 @@
 block discarded – undo
2 2
 namespace Consolidation\SiteProcess\Util;
3 3
 
4 4
 use Symfony\Component\Process\Process;
5
-use Consolidation\Config\Util\Interpolator;
6 5
 use Symfony\Component\Console\Output\OutputInterface;
7 6
 use Symfony\Component\Console\Output\NullOutput;
8 7
 
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
@@ -49,6 +49,9 @@  discard block
 block discarded – undo
49 49
         return $this->output;
50 50
     }
51 51
 
52
+    /**
53
+     * @return OutputInterface
54
+     */
52 55
     protected function realtimeStderr()
53 56
     {
54 57
         if ($this->stderr) {
@@ -164,7 +167,7 @@  discard block
 block discarded – undo
164 167
     /**
165 168
      * Return a realTime output object.
166 169
      *
167
-     * @return callable
170
+     * @return RealtimeOutputHandler
168 171
      */
169 172
     public function showRealtime()
170 173
     {
Please login to merge, or discard this patch.
src/SiteProcess.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -198,7 +198,6 @@
 block discarded – undo
198 198
      * It is possible to use dot notation in the keys to access nested elements
199 199
      * within the site alias record.
200 200
      *
201
-     * @param SiteAliasInterface $siteAlias
202 201
      * @param type $args
203 202
      * @return type
204 203
      */
Please login to merge, or discard this patch.
Unused Use Statements   -4 removed lines patch added patch discarded remove patch
@@ -2,13 +2,9 @@
 block discarded – undo
2 2
 namespace Consolidation\SiteProcess;
3 3
 
4 4
 use Consolidation\SiteAlias\SiteAliasInterface;
5
-use Consolidation\SiteProcess\Transport\DockerComposeTransport;
6 5
 use Consolidation\SiteProcess\Util\ArgumentProcessor;
7
-use Consolidation\SiteProcess\Transport\LocalTransport;
8
-use Consolidation\SiteProcess\Transport\SshTransport;
9 6
 use Consolidation\SiteProcess\Transport\TransportInterface;
10 7
 use Consolidation\Config\Util\Interpolator;
11
-use Consolidation\SiteProcess\Util\Shell;
12 8
 use Consolidation\SiteProcess\Util\ShellOperatorInterface;
13 9
 use Consolidation\SiteProcess\Util\Escape;
14 10
 
Please login to merge, or discard this patch.
src/Util/ArgumentProcessor.php 2 patches
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 SiteAliasInterface $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.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 namespace Consolidation\SiteProcess\Util;
3 3
 
4 4
 use Consolidation\SiteAlias\SiteAliasInterface;
5
-use Symfony\Component\Process\Process;
6
-use Consolidation\SiteProcess\Transport\TransportInterface;
7 5
 
8 6
 /**
9 7
  * ArgumentProcessor takes a set of arguments and options from the caller
Please login to merge, or discard this patch.