X-Git-Url: http://source.bookstackapp.com/bookstack/blobdiff_plain/6fa093d9d0a2073e872ce545b87ef2eb1b35a99b..refs/pull/3365/head:/app/Application.php diff --git a/app/Application.php b/app/Application.php index 8c56e9dac..d409d14bc 100644 --- a/app/Application.php +++ b/app/Application.php @@ -4,16 +4,20 @@ namespace BookStack; class Application extends \Illuminate\Foundation\Application { - /** * Get the path to the application configuration files. * - * @param string $path Optionally, a path to append to the config path + * @param string $path Optionally, a path to append to the config path + * * @return string */ public function configPath($path = '') { - return $this->basePath.DIRECTORY_SEPARATOR.'app'.DIRECTORY_SEPARATOR.'Config'.($path ? DIRECTORY_SEPARATOR.$path : $path); + return $this->basePath + . DIRECTORY_SEPARATOR + . 'app' + . DIRECTORY_SEPARATOR + . 'Config' + . ($path ? DIRECTORY_SEPARATOR . $path : $path); } - -} \ No newline at end of file +}