From 725369e6679f09a1d55ffee21ae92bc9f09131f3 Mon Sep 17 00:00:00 2001 From: Sam Jordan Date: Mon, 27 Jul 2020 09:32:01 +0100 Subject: [PATCH] Removes 7.4 features --- app/Helpers/Process.php | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) 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)