diff options
author | Dhruv <dhruv.goel92@gmail.com> | 2013-10-03 21:09:02 +0530 |
---|---|---|
committer | Dhruv <dhruv.goel92@gmail.com> | 2013-10-03 21:09:02 +0530 |
commit | 16d6dc2e7101aba6c08183f2acca2592ec8e04f5 (patch) | |
tree | 32c276b3798df1d3ea3174b04d8c5dc5892775d3 /phpBB/phpbb/db/migration | |
parent | 34040771be42e5533737d2890bdecbb3373772cb (diff) | |
download | forums-16d6dc2e7101aba6c08183f2acca2592ec8e04f5.tar forums-16d6dc2e7101aba6c08183f2acca2592ec8e04f5.tar.gz forums-16d6dc2e7101aba6c08183f2acca2592ec8e04f5.tar.bz2 forums-16d6dc2e7101aba6c08183f2acca2592ec8e04f5.tar.xz forums-16d6dc2e7101aba6c08183f2acca2592ec8e04f5.zip |
[ticket/11344] Upgrade migration to namespaces
PHPBB3-11344
Diffstat (limited to 'phpBB/phpbb/db/migration')
-rw-r--r-- | phpBB/phpbb/db/migration/data/v310/acp_style_components_module.php (renamed from phpBB/phpbb/db/migration/data/310/acp_style_components_module.php) | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/phpBB/phpbb/db/migration/data/310/acp_style_components_module.php b/phpBB/phpbb/db/migration/data/v310/acp_style_components_module.php index cefaf7c452..9f168f4fd6 100644 --- a/phpBB/phpbb/db/migration/data/310/acp_style_components_module.php +++ b/phpBB/phpbb/db/migration/data/v310/acp_style_components_module.php @@ -7,7 +7,9 @@ * */ -class phpbb_db_migration_data_310_acp_style_components_module extends phpbb_db_migration +namespace phpbb\db\migration\data\v310; + +class acp_style_components_module extends \phpbb\db\migration\migration { public function effectively_installed() { @@ -24,7 +26,7 @@ class phpbb_db_migration_data_310_acp_style_components_module extends phpbb_db_m static public function depends_on() { - return array('phpbb_db_migration_data_310_dev'); + return array('\phpbb\db\migration\data\v310\dev'); } public function update_data() |