mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-23 02:18:56 +00:00
[ticket/17528] Adjust tests code styling
PHPBB-17528
This commit is contained in:
parent
40cd938e51
commit
09ff07646f
1 changed files with 24 additions and 9 deletions
|
@ -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;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue