diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-05-01 14:09:08 -0500 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-05-01 14:09:08 -0500 |
commit | 60e32728393d4258f92f7893f8275889278a995f (patch) | |
tree | b6c3094d0af17db29c30511d90428224ddfde6c5 /phpBB/includes/extension | |
parent | 7ed21cc6f2b7eee305d0c7c00821ef1ce680b77e (diff) | |
download | forums-60e32728393d4258f92f7893f8275889278a995f.tar forums-60e32728393d4258f92f7893f8275889278a995f.tar.gz forums-60e32728393d4258f92f7893f8275889278a995f.tar.bz2 forums-60e32728393d4258f92f7893f8275889278a995f.tar.xz forums-60e32728393d4258f92f7893f8275889278a995f.zip |
[ticket/11415] Remove migrator dependency from extension manager
PHPBB3-11415
Diffstat (limited to 'phpBB/includes/extension')
-rw-r--r-- | phpBB/includes/extension/manager.php | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/phpBB/includes/extension/manager.php b/phpBB/includes/extension/manager.php index 8b8a69f14c..b42043748f 100644 --- a/phpBB/includes/extension/manager.php +++ b/phpBB/includes/extension/manager.php @@ -29,7 +29,6 @@ class phpbb_extension_manager protected $db; protected $config; - protected $migrator; protected $cache; protected $php_ext; protected $extensions; @@ -43,7 +42,6 @@ class phpbb_extension_manager * @param ContainerInterface $container A container * @param phpbb_db_driver $db A database connection * @param phpbb_config $config phpbb_config - * @param phpbb_db_migrator $migrator * @param phpbb_filesystem $filesystem * @param string $extension_table The name of the table holding extensions * @param string $phpbb_root_path Path to the phpbb includes directory. @@ -51,13 +49,12 @@ class phpbb_extension_manager * @param phpbb_cache_driver_interface $cache A cache instance or null * @param string $cache_name The name of the cache variable, defaults to _ext */ - public function __construct(ContainerInterface $container, phpbb_db_driver $db, phpbb_config $config, phpbb_db_migrator $migrator, phpbb_filesystem $filesystem, $extension_table, $phpbb_root_path, $php_ext = 'php', phpbb_cache_driver_interface $cache = null, $cache_name = '_ext') + public function __construct(ContainerInterface $container, phpbb_db_driver $db, phpbb_config $config, phpbb_filesystem $filesystem, $extension_table, $phpbb_root_path, $php_ext = 'php', phpbb_cache_driver_interface $cache = null, $cache_name = '_ext') { $this->container = $container; $this->phpbb_root_path = $phpbb_root_path; $this->db = $db; $this->config = $config; - $this->migrator = $migrator; $this->cache = $cache; $this->filesystem = $filesystem; $this->php_ext = $php_ext; |