mirror of
https://github.com/phpbb/phpbb.git
synced 2025-06-28 06:08:52 +00:00
[ticket/11344] Upgrade migration to namespaces
PHPBB3-11344
This commit is contained in:
parent
34040771be
commit
16d6dc2e71
1 changed files with 4 additions and 2 deletions
|
@ -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()
|
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()
|
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()
|
public function update_data()
|
Loading…
Add table
Reference in a new issue