Completed
Push — master ( 06dc35...966f49 )
by Danny
05:47
created
Process/ProcessInterface.php 1 patch
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.