1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-19 06:51:33 +02:00

[ticket/12508] Move \phpbb\extension\finder to \phpbb\finder

PHPBB3-12508
This commit is contained in:
Joas Schilling
2014-05-06 18:27:30 +02:00
parent d45c681b40
commit 183492b019
9 changed files with 27 additions and 27 deletions

View File

@@ -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))
{