Skip to content

Commit

Permalink
fix: declaration compatibility of ParentRuntime::createProcess #43
Browse files Browse the repository at this point in the history
  • Loading branch information
peteradeojo committed Sep 27, 2023
1 parent 369b19a commit 852cb0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Runtime/ParentRuntime.php
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
*/
class ParentRuntime extends BaseParentRuntime
{
public static function createProcess($task, ?int $outputLength = null, ?string $binary = 'php'): Runnable
public static function createProcess($task, ?int $outputLength = null, ?string $binary = 'php', ?int $max_input_size = 100000): Runnable
{
$runnable = parent::createProcess($task, $outputLength, $binary);

Expand Down

0 comments on commit 852cb0c

Please sign in to comment.