From 5a0c9763d114e35c4c7a96518ac367059127f729 Mon Sep 17 00:00:00 2001 From: javiexin Date: Sun, 16 Jul 2017 11:58:54 +0200 Subject: [ticket/15274] Allow "custom" migrations to use parameters Remove references in migration tool. PHPBB3-15274 --- tests/dbal/migration/recall.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'tests/dbal/migration/recall.php') diff --git a/tests/dbal/migration/recall.php b/tests/dbal/migration/recall.php index c0333b084d..e065b5c4d8 100644 --- a/tests/dbal/migration/recall.php +++ b/tests/dbal/migration/recall.php @@ -21,7 +21,7 @@ class phpbb_dbal_migration_recall extends \phpbb\db\migration\migration function update_data() { return array( - array('custom', array(array(&$this, 'test_call'))), + array('custom', array(array($this, 'test_call'))), ); } -- cgit v1.2.1