From f5045b3ae7771abbe8f3a8527a3572aa5db85690 Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Sat, 17 Oct 2020 22:22:17 +0200 Subject: [PATCH] Lint --- tests/BaseTest.php | 2 -- tests/VideoTest.php | 10 +++++----- 2 files changed, 5 insertions(+), 7 deletions(-) diff --git a/tests/BaseTest.php b/tests/BaseTest.php index 4d70e8e..7aa5351 100644 --- a/tests/BaseTest.php +++ b/tests/BaseTest.php @@ -6,8 +6,6 @@ namespace Alltube\Test; -use Alltube\Config; -use Alltube\Exception\ConfigException; use PHPUnit\Framework\TestCase; /** diff --git a/tests/VideoTest.php b/tests/VideoTest.php index fe451c0..05b9856 100644 --- a/tests/VideoTest.php +++ b/tests/VideoTest.php @@ -81,11 +81,11 @@ class VideoTest extends BaseTest * @dataProvider remuxUrlProvider */ public function testgetUrl( - $url, - $format, - /* @scrutinizer ignore-unused */ $filename, - /* @scrutinizer ignore-unused */ $extension, - $domain + string $url, + string $format, + string $filename, + string $extension, + string $domain ) { $video = new Video($this->downloader, $url, $format); foreach ($video->getUrl() as $videoURL) {