diff options
author | Joas Schilling <nickvergessen@gmx.de> | 2014-05-06 18:27:30 +0200 |
---|---|---|
committer | Joas Schilling <nickvergessen@gmx.de> | 2014-06-10 11:47:40 +0200 |
commit | 183492b01931dec5052e2087f70fa432a2f51b03 (patch) | |
tree | 44529b38da7872f3a66c1a95ba1370100f20c604 /phpBB/phpbb/db/migrator.php | |
parent | d45c681b40cf0415ce49b2cd7f3f1083e84b367c (diff) | |
download | forums-183492b01931dec5052e2087f70fa432a2f51b03.tar forums-183492b01931dec5052e2087f70fa432a2f51b03.tar.gz forums-183492b01931dec5052e2087f70fa432a2f51b03.tar.bz2 forums-183492b01931dec5052e2087f70fa432a2f51b03.tar.xz forums-183492b01931dec5052e2087f70fa432a2f51b03.zip |
[ticket/12508] Move \phpbb\extension\finder to \phpbb\finder
PHPBB3-12508
Diffstat (limited to 'phpBB/phpbb/db/migrator.php')
-rw-r--r-- | phpBB/phpbb/db/migrator.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/phpBB/phpbb/db/migrator.php b/phpBB/phpbb/db/migrator.php index 9b9532a7ad..5255c73c1c 100644 --- a/phpBB/phpbb/db/migrator.php +++ b/phpBB/phpbb/db/migrator.php @@ -714,7 +714,7 @@ class migrator /** * Load migration data files from a directory * - * @param \phpbb\extension\finder $finder + * @param \phpbb\finder $finder * @param string $path Path to migration data files * @param bool $check_fulfillable If TRUE (default), we will check * if all of the migrations are fulfillable after loading them. @@ -723,7 +723,7 @@ class migrator * with the last call to prevent throwing errors unnecessarily). * @return array Array of migration names */ - public function load_migrations(\phpbb\extension\finder $finder, $path, $check_fulfillable = true) + public function load_migrations(\phpbb\finder $finder, $path, $check_fulfillable = true) { if (!is_dir($path)) { |