aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRubén Calvo <rubencm@gmail.com>2017-06-27 10:27:32 +0200
committerRubén Calvo <rubencm@gmail.com>2017-07-20 19:55:52 +0200
commit603a8c51da9ef19d2cab9c8299f3e48392f81c6f (patch)
tree801ce67cbe1d463ba0be707e00806ac0131a5b31 /phpBB/phpbb/extension
parent[ticket/15253] Add experimental annotation (diff)
downloadphpbb-603a8c51da9ef19d2cab9c8299f3e48392f81c6f.tar.gz
phpbb-603a8c51da9ef19d2cab9c8299f3e48392f81c6f.tar.bz2
phpbb-603a8c51da9ef19d2cab9c8299f3e48392f81c6f.zip
[ticket/15253] Move storage helper to filesystem
PHPBB3-15253
Diffstat (limited to 'phpBB/phpbb/extension')
-rw-r--r--phpBB/phpbb/extension/di/extension_base.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/phpBB/phpbb/extension/di/extension_base.php b/phpBB/phpbb/extension/di/extension_base.php
index e6fd5688cc..a8f8ca0776 100644
--- a/phpBB/phpbb/extension/di/extension_base.php
+++ b/phpBB/phpbb/extension/di/extension_base.php
@@ -94,7 +94,7 @@ class extension_base extends Extension
if ($services_directory && $services_file)
{
- $loader = new YamlFileLoader($container, new FileLocator(\phpbb\storage\helper::realpath($services_directory)));
+ $loader = new YamlFileLoader($container, new FileLocator(\phpbb\filesystem\helper::realpath($services_directory)));
$loader->load($services_file);
}
}