formatter
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2024-01-12 12:26:11 +00:00
parent 037ed54ed9
commit 023e55c1bf
3 changed files with 9 additions and 6 deletions

View File

@@ -22,7 +22,7 @@ class MultiDownloaderClientTest extends TestCase
public function testDownloadAsString()
{
$client = new MultiDownloaderClient(['apiKey' => 'test', 'apiSecret' => 'test' ]);
$client = new MultiDownloaderClient(['apiKey' => 'test', 'apiSecret' => 'test']);
$client->setFiles($this->testFiles());
@@ -35,7 +35,7 @@ class MultiDownloaderClientTest extends TestCase
public function testDownloadTo()
{
$client = new MultiDownloaderClient(['apiKey' => 'test', 'apiSecret' => 'test' ]);
$client = new MultiDownloaderClient(['apiKey' => 'test', 'apiSecret' => 'test']);
$path = sys_get_temp_dir() . '/testDownloadTo.zip';
@@ -50,7 +50,7 @@ class MultiDownloaderClientTest extends TestCase
public function testForm()
{
$client = new MultiDownloaderClient(['apiKey' => 'test', 'apiSecret' => 'test' ]);
$client = new MultiDownloaderClient(['apiKey' => 'test', 'apiSecret' => 'test']);
$client->setFiles($this->testFiles());
echo $client->htmlForm($this->testFiles());