From efff5ac49e04a73cc1c9c92620e0f534ec1ee109 Mon Sep 17 00:00:00 2001 From: Marc Alexander Date: Tue, 23 Jul 2024 21:06:48 +0200 Subject: [PATCH] [ticket/12479] Fix use statements in file_downloader PHPBB-12479 --- phpBB/phpbb/file_downloader.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/phpBB/phpbb/file_downloader.php b/phpBB/phpbb/file_downloader.php index bf466c94bc..b01f4c7043 100644 --- a/phpBB/phpbb/file_downloader.php +++ b/phpBB/phpbb/file_downloader.php @@ -14,9 +14,8 @@ namespace phpbb; use GuzzleHttp\Client; -use GuzzleHttp\Exception\RequestException ; +use GuzzleHttp\Exception\RequestException; use phpbb\exception\runtime_exception; -use function Amp\Promise\rethrow; class file_downloader {