From 4352c456e6dc3a0d1505db986c36da848f57aaf3 Mon Sep 17 00:00:00 2001 From: Boluwatife Ade-Ojo Date: Sun, 1 Oct 2023 18:59:40 +0100 Subject: [PATCH] passed max_input_size to parent process --- src/Runtime/ParentRuntime.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Runtime/ParentRuntime.php b/src/Runtime/ParentRuntime.php index b2e741c..d305078 100644 --- a/src/Runtime/ParentRuntime.php +++ b/src/Runtime/ParentRuntime.php @@ -23,7 +23,7 @@ class ParentRuntime extends BaseParentRuntime { public static function createProcess($task, ?int $outputLength = null, ?string $binary = 'php', ?int $max_input_size = 100000): Runnable { - $runnable = parent::createProcess($task, $outputLength, $binary); + $runnable = parent::createProcess($task, $outputLength, $binary, $max_input_size); if ($runnable instanceof SynchronousProcess) { return $runnable;