Resolve Call to undefined function shell_exec #1496

This commit is contained in:
the-djmaze 2024-03-16 00:53:59 +01:00
parent 89e80bf124
commit 5657af7238

View file

@ -89,7 +89,7 @@ abstract class Base
public static function isSupported() : bool
{
return \is_callable('proc_open');
return \is_callable('shell_exec') && \is_callable('proc_open');
}
protected function listDecryptKeys(/*string|resource*/ $input, /*string|resource*/ $output = null)