Completed
Push — master ( 06dc35...966f49 )
by Danny
05:47
created
Process/ProcessInterface.php 2 patches
Doc Comments   +4 added lines, -1 removed lines patch added patch discarded remove patch
@@ -247,7 +247,7 @@  discard block
 block discarded – undo
247 247
     /**
248 248
      * Stops the process.
249 249
      *
250
-     * @param int|float $timeout The timeout in seconds
250
+     * @param integer $timeout The timeout in seconds
251 251
      * @param int $signal A POSIX signal to send in case the process has not stop at timeout, default is SIGKILL (9)
252 252
      *
253 253
      * @return int The exit-code of the process
@@ -260,6 +260,7 @@  discard block
 block discarded – undo
260 260
      * @internal
261 261
      *
262 262
      * @param string $line The line to append
263
+     * @return void
263 264
      */
264 265
     public function addOutput($line);
265 266
 
@@ -269,6 +270,7 @@  discard block
 block discarded – undo
269 270
      * @internal
270 271
      *
271 272
      * @param string $line The line to append
273
+     * @return void
272 274
      */
273 275
     public function addErrorOutput($line);
274 276
 
@@ -444,6 +446,7 @@  discard block
 block discarded – undo
444 446
      * trigger this method regularly to ensure the process timeout
445 447
      *
446 448
      * @throws ProcessTimedOutException In case the timeout was reached
449
+     * @return void
447 450
      */
448 451
     public function checkTimeout();
449 452
 }
Please login to merge, or discard this patch.
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -4,7 +4,6 @@
 block discarded – undo
4 4
 
5 5
 use Symfony\Component\Process\Exception\InvalidArgumentException;
6 6
 use Symfony\Component\Process\Exception\LogicException;
7
-use Symfony\Component\Process\Exception\ProcessFailedException;
8 7
 use Symfony\Component\Process\Exception\ProcessTimedOutException;
9 8
 use Symfony\Component\Process\Exception\RuntimeException;
10 9
 use Symfony\Component\Process\Process;
Please login to merge, or discard this patch.