From 20ff512269485076aefbf4ac5146b8592f31b109 Mon Sep 17 00:00:00 2001 From: "Alexander M. Turek" Date: Sun, 18 Aug 2019 11:18:30 +0200 Subject: [PATCH] [Process] Added missing return type. --- src/Symfony/Component/Process/Process.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/Symfony/Component/Process/Process.php b/src/Symfony/Component/Process/Process.php index a5df60f6b9..ceb67c0686 100644 --- a/src/Symfony/Component/Process/Process.php +++ b/src/Symfony/Component/Process/Process.php @@ -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)