From 09ff07646f7e7298793c14af2873a01dcb67444f Mon Sep 17 00:00:00 2001 From: rxu Date: Fri, 18 Jul 2025 13:27:08 +0700 Subject: [PATCH] [ticket/17528] Adjust tests code styling PHPBB-17528 --- tests/migrations/migration_test_base.php | 33 +++++++++++++++++------- 1 file changed, 24 insertions(+), 9 deletions(-) diff --git a/tests/migrations/migration_test_base.php b/tests/migrations/migration_test_base.php index 62148a6654..ce83e01ea5 100644 --- a/tests/migrations/migration_test_base.php +++ b/tests/migrations/migration_test_base.php @@ -13,24 +13,39 @@ abstract class phpbb_migration_test_base extends phpbb_database_test_case { - /** @var \phpbb\db\driver\driver_interface */ - protected $db; + /** @var \phpbb\auth\auth */ + protected $auth; - /** @var \Doctrine\DBAL\Connection */ - protected $doctrine_db; + /** @var \phpbb\cache\driver\driver_interface */ + protected $cache; - /** @var \phpbb\db\tools\tools_interface */ - protected $db_tools; - - /** @var \phpbb\db\migrator */ - protected $migrator; + /** @var \phpbb\cache\service */ + protected $cache_service; /** @var \phpbb\config\config */ protected $config; + /** @var \phpbb\db\driver\driver_interface */ + protected $db; + + /** @var \phpbb\db\tools\tools_interface */ + protected $db_tools; + + /** @var \Doctrine\DBAL\Connection */ + protected $doctrine_db; + /** @var \phpbb\extension\manager */ protected $extension_manager; + /** @var \phpbb\db\migrator */ + protected $migrator; + + /** @var \phpbb\db\migration\tool\tool_interface */ + protected $tools; + + /** @var \phpbb\user */ + protected $user; + /** @var string */ protected $fixture;