Skip to content

Commit

Permalink
Update ProcessFactory.php
Browse files Browse the repository at this point in the history
  • Loading branch information
eiriksm authored Oct 10, 2024
1 parent 3cdd618 commit 2b1a788
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ProcessFactory.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

class ProcessFactory implements ProcessFactoryInterface
{
public function getProcess(array $commandline, $cwd = null, array $env = null, $input = null, $timeout = 60, array $options = null)
public function getProcess(array $command, ?string $cwd = null, ?array $env = null, $input = null, ?float $timeout = 60);
{
return new Process($commandline, $cwd, $env, $input, $timeout);
}
Expand Down

0 comments on commit 2b1a788

Please sign in to comment.