From 9b01a23c9b3bd8a4a75d990a058f8a0c1648ca31 Mon Sep 17 00:00:00 2001 From: Hypolite Petovan Date: Sun, 15 Jul 2018 12:44:32 -0400 Subject: [PATCH] Code standards in App --- src/App.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.php b/src/App.php index e495f48dd4..2429fde407 100644 --- a/src/App.php +++ b/src/App.php @@ -385,8 +385,8 @@ class App throw new Exception('Error parsing config file ' . $filepath); } - foreach($config as $category => $values) { - foreach($values as $key => $value) { + foreach ($config as $category => $values) { + foreach ($values as $key => $value) { $this->setConfigValue($category, $key, $value); } }