From 921505ca3bf190d18d5dd412a2c7908548ec7b65 Mon Sep 17 00:00:00 2001 From: Ruben Calvo Date: Sat, 18 Jan 2025 23:24:34 +0100 Subject: [PATCH] [ticket/17361] Fix code style PHPBB-17361 --- phpBB/phpbb/db/migration/data/v400/storage_track.php | 1 - phpBB/phpbb/storage/file_tracker.php | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/phpBB/phpbb/db/migration/data/v400/storage_track.php b/phpBB/phpbb/db/migration/data/v400/storage_track.php index 4d50ac0393..54827d7d29 100644 --- a/phpBB/phpbb/db/migration/data/v400/storage_track.php +++ b/phpBB/phpbb/db/migration/data/v400/storage_track.php @@ -14,7 +14,6 @@ namespace phpbb\db\migration\data\v400; use phpbb\db\migration\container_aware_migration; -use phpbb\storage\exception\storage_exception; use phpbb\storage\file_tracker; class storage_track extends container_aware_migration diff --git a/phpBB/phpbb/storage/file_tracker.php b/phpBB/phpbb/storage/file_tracker.php index 6a34fde239..991eef2d7e 100644 --- a/phpBB/phpbb/storage/file_tracker.php +++ b/phpBB/phpbb/storage/file_tracker.php @@ -42,7 +42,7 @@ class file_tracker * @param db $db * @param string $storage_table */ - public function __construct(cache $cache,db $db, string $storage_table) + public function __construct(cache $cache, db $db, string $storage_table) { $this->cache = $cache; $this->db = $db;