mirror of
https://github.com/phpbb/phpbb.git
synced 2025-07-30 21:40:43 +02:00
[ticket/15274] Allow "custom" migrations to use parameters
Remove references in migration tool. PHPBB3-15274
This commit is contained in:
@@ -23,11 +23,11 @@ class phpbb_dbal_migration_if extends \phpbb\db\migration\migration
|
||||
return array(
|
||||
array('if', array(
|
||||
true,
|
||||
array('custom', array(array(&$this, 'test_true'))),
|
||||
array('custom', array(array($this, 'test_true'))),
|
||||
)),
|
||||
array('if', array(
|
||||
false,
|
||||
array('custom', array(array(&$this, 'test_false'))),
|
||||
array('custom', array(array($this, 'test_false'))),
|
||||
)),
|
||||
);
|
||||
}
|
||||
|
Reference in New Issue
Block a user