From 4feb9aa8d7bda303b62acec924008f75042eb757 Mon Sep 17 00:00:00 2001 From: Igor Wiedler Date: Sat, 25 Aug 2012 16:43:41 +0200 Subject: [feature/dic] Coding style: Braces PHPBB3-10739 --- phpBB/includes/di/processor/config.php | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'phpBB/includes/di/processor/config.php') diff --git a/phpBB/includes/di/processor/config.php b/phpBB/includes/di/processor/config.php index 45b750c31e..1a5ec15854 100644 --- a/phpBB/includes/di/processor/config.php +++ b/phpBB/includes/di/processor/config.php @@ -52,7 +52,8 @@ class phpbb_di_processor_config implements phpbb_di_processor_interface protected function fix_acm_type($acm_type) { - if (preg_match('#^[a-z]+$#', $acm_type)) { + if (preg_match('#^[a-z]+$#', $acm_type)) + { return 'phpbb_cache_driver_'.$acm_type; } -- cgit v1.2.1