From b562c8a8d77178fad81b5b055d27d8d046799534 Mon Sep 17 00:00:00 2001 From: Awilum Date: Wed, 19 Feb 2020 23:35:11 +0300 Subject: [PATCH] refactor(core): fix code standard for Flextype bootstrap #347 --- flextype/bootstrap.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/flextype/bootstrap.php b/flextype/bootstrap.php index c41cb6dc..3cded7d3 100755 --- a/flextype/bootstrap.php +++ b/flextype/bootstrap.php @@ -169,7 +169,7 @@ date_default_timezone_set($flextype['registry']->get('flextype.timezone')); */ $shortcodes_extensions = $flextype['registry']->get('flextype.shortcodes.extensions'); -foreach($shortcodes_extensions as $shortcodes_extension) { +foreach ($shortcodes_extensions as $shortcodes_extension) { $shortcodes_extension_file_path = ROOT_DIR . '/flextype/shortcodes/' . $shortcodes_extension . 'ShortcodeExtension.php'; if (file_exists($shortcodes_extension_file_path)) { include_once $shortcodes_extension_file_path;