From 8cb3eb720887b60d828c343468708a89dec9a58d Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Tue, 5 Dec 2017 14:52:20 +0100 Subject: [PATCH] Ignore unused parameters in test --- tests/VideoDownloadTest.php | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tests/VideoDownloadTest.php b/tests/VideoDownloadTest.php index 4cad529..9bf200d 100644 --- a/tests/VideoDownloadTest.php +++ b/tests/VideoDownloadTest.php @@ -100,8 +100,13 @@ class VideoDownloadTest extends TestCase * @dataProvider rtmpUrlProvider * @dataProvider remuxUrlProvider */ - public function testGetURL($url, $format, $filename, $extension, $domain) - { + public function testGetURL( + $url, + $format, + /* @scrutinizer ignore-unused */ $filename, + /* @scrutinizer ignore-unused */ $extension, + $domain + ) { $videoURL = $this->download->getURL($url, $format); $this->assertContains($domain, $videoURL[0]); }