1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-30 21:40:43 +02:00

Merge pull request #1735 from nickvergessen/ticket/11852

Ticket/11852 filesystem class must not depend on a web request
This commit is contained in:
Nathan Guse
2013-09-30 16:21:02 -07:00
27 changed files with 285 additions and 292 deletions

View File

@@ -14,12 +14,6 @@ class phpbb_mock_extension_manager extends \phpbb\extension\manager
$this->phpbb_root_path = $phpbb_root_path;
$this->php_ext = 'php';
$this->extensions = $extensions;
$this->filesystem = new \phpbb\filesystem(
new \phpbb\symfony_request(
new phpbb_mock_request()
),
$this->phpbb_root_path,
$this->php_ext
);
$this->filesystem = new \phpbb\filesystem();
}
}