From 5860adc79ee5dd7e62e2f83ac12c1815cc57b5e1 Mon Sep 17 00:00:00 2001 From: irazasyed Date: Mon, 19 Oct 2020 06:26:37 +0000 Subject: [PATCH] Apply PHP CS Fixer changes --- src/helpers.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/helpers.php b/src/helpers.php index 1d7dbaa..5b87b49 100644 --- a/src/helpers.php +++ b/src/helpers.php @@ -41,7 +41,7 @@ function app_path($path = '') */ function config_path($path = '') { - return base_path('config').($path ? DIRECTORY_SEPARATOR.$path : $path); + return base_path('config') . ($path ? DIRECTORY_SEPARATOR . $path : $path); } }