diff --git a/app/Helpers/Process.php b/app/Helpers/Process.php index 151cdc2..5df1253 100644 --- a/app/Helpers/Process.php +++ b/app/Helpers/Process.php @@ -7,12 +7,12 @@ class Process { - protected bool $echoOnFailure = true; - protected bool $echoLineByLineOutput = true; + protected $echoOnFailure = true; + protected $echoLineByLineOutput = true; - protected int $timeout = 60; - protected array $environmentVars = []; - protected array $arguments = []; + protected $timeout = 60; + protected $environmentVars = []; + protected $arguments = []; protected $process; public function withCommand(array $arguments)