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

[feature/dic] Coding style: Braces

PHPBB3-10739
This commit is contained in:
Igor Wiedler
2012-08-25 16:43:41 +02:00
parent 7e44ca4d49
commit 4feb9aa8d7
5 changed files with 12 additions and 6 deletions

View File

@@ -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;
}