[Process] Added missing return type.

This commit is contained in:
Alexander M. Turek 2019-08-18 11:18:30 +02:00
parent 431ead273a
commit 20ff512269
1 changed files with 2 additions and 0 deletions

View File

@ -186,6 +186,8 @@ class Process implements \IteratorAggregate
* @param mixed|null $input The input as stream resource, scalar or \Traversable, or null for no input
* @param int|float|null $timeout The timeout in seconds or null to disable
*
* @return static
*
* @throws RuntimeException When proc_open is not installed
*/
public static function fromShellCommandline(string $command, string $cwd = null, array $env = null, $input = null, ?float $timeout = 60)