mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-26 03:48:53 +00:00
Compare commits
2 commits
a30f385fd1
...
21f9286840
Author | SHA1 | Date | |
---|---|---|---|
|
21f9286840 | ||
|
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