diff options
Diffstat (limited to 'phpBB/phpbb/di/extension')
| -rw-r--r-- | phpBB/phpbb/di/extension/config.php | 6 | ||||
| -rw-r--r-- | phpBB/phpbb/di/extension/core.php | 4 | ||||
| -rw-r--r-- | phpBB/phpbb/di/extension/ext.php | 4 | 
3 files changed, 10 insertions, 4 deletions
| diff --git a/phpBB/phpbb/di/extension/config.php b/phpBB/phpbb/di/extension/config.php index 6c272a6588..85b374a3ca 100644 --- a/phpBB/phpbb/di/extension/config.php +++ b/phpBB/phpbb/di/extension/config.php @@ -7,6 +7,8 @@  *  */ +namespace phpbb\di\extension; +  /**  * @ignore  */ @@ -23,7 +25,7 @@ use Symfony\Component\Config\FileLocator;  /**  * Container config extension  */ -class phpbb_di_extension_config extends Extension +class config extends Extension  {  	public function __construct($config_file)  	{ @@ -76,7 +78,7 @@ class phpbb_di_extension_config extends Extension  	{  		if (preg_match('#^[a-z]+$#', $acm_type))  		{ -			return 'phpbb_cache_driver_'.$acm_type; +			return '\\phpbb\cache\driver\\'.$acm_type;  		}  		return $acm_type; diff --git a/phpBB/phpbb/di/extension/core.php b/phpBB/phpbb/di/extension/core.php index 9d59a24b7e..1f6b700973 100644 --- a/phpBB/phpbb/di/extension/core.php +++ b/phpBB/phpbb/di/extension/core.php @@ -7,6 +7,8 @@  *  */ +namespace phpbb\di\extension; +  /**  * @ignore  */ @@ -23,7 +25,7 @@ use Symfony\Component\Config\FileLocator;  /**  * Container core extension  */ -class phpbb_di_extension_core extends Extension +class core extends Extension  {  	/**  	* Config path diff --git a/phpBB/phpbb/di/extension/ext.php b/phpBB/phpbb/di/extension/ext.php index 7d9b433751..cf623a7c87 100644 --- a/phpBB/phpbb/di/extension/ext.php +++ b/phpBB/phpbb/di/extension/ext.php @@ -7,6 +7,8 @@  *  */ +namespace phpbb\di\extension; +  /**  * @ignore  */ @@ -23,7 +25,7 @@ use Symfony\Component\Config\FileLocator;  /**  * Container ext extension  */ -class phpbb_di_extension_ext extends Extension +class ext extends Extension  {  	protected $paths = array(); | 
