checkCommand() needs to be public

This commit is contained in:
Pierre Rudloff 2020-06-20 23:09:38 +02:00
parent 107b3f34bd
commit 73e80536ae

View file

@ -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();