From 73e80536ae10f21fa8d60519616a08ce3813d8ba Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Sat, 20 Jun 2020 23:09:38 +0200 Subject: [PATCH] checkCommand() needs to be public --- classes/Downloader.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/classes/Downloader.php b/classes/Downloader.php index 4762808..7314704 100644 --- a/classes/Downloader.php +++ b/classes/Downloader.php @@ -126,7 +126,7 @@ class Downloader * * @return bool False if the command returns an error, true otherwise */ - private static function checkCommand(array $command) + public static function checkCommand(array $command) { $process = new Process($command); $process->run();