PHP_CodeSniffer performed.

This commit is contained in:
2023-06-01 09:16:19 +00:00
parent 65ac999075
commit c3ef0400f6
5 changed files with 16 additions and 7 deletions

View File

@ -10,7 +10,7 @@ use Symfony\Component\Process\Exception\ProcessFailedException;
use Exception;
class Rclone
class Rclone
{
use LoggerAwareTrait;
@ -70,8 +70,12 @@ class Rclone
}
/**
* @param $command Top level Rclone command
* @param array<String> $options
* Execute a command on the rclone binary
*
* @param string $command Top level Rclone command
* @param array<String> $options Array of additional options
*
* @return string stdout data.
*/
protected function exec(string $command, array $options = array()) : string
{