[ticket/17528] Adjust tests code styling

PHPBB-17528
This commit is contained in:
rxu 2025-07-18 13:27:08 +07:00
parent 40cd938e51
commit 09ff07646f
No known key found for this signature in database
GPG key ID: 8117904FEDEFDD17

View file

@ -13,24 +13,39 @@
abstract class phpbb_migration_test_base extends phpbb_database_test_case abstract class phpbb_migration_test_base extends phpbb_database_test_case
{ {
/** @var \phpbb\db\driver\driver_interface */ /** @var \phpbb\auth\auth */
protected $db; protected $auth;
/** @var \Doctrine\DBAL\Connection */ /** @var \phpbb\cache\driver\driver_interface */
protected $doctrine_db; protected $cache;
/** @var \phpbb\db\tools\tools_interface */ /** @var \phpbb\cache\service */
protected $db_tools; protected $cache_service;
/** @var \phpbb\db\migrator */
protected $migrator;
/** @var \phpbb\config\config */ /** @var \phpbb\config\config */
protected $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 */ /** @var \phpbb\extension\manager */
protected $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 */ /** @var string */
protected $fixture; protected $fixture;