]> BookStack Code Mirror - bookstack/blobdiff - app/Application.php
Added more complexity in an attempt to make ldap host failover fit
[bookstack] / app / Application.php
index 8c56e9dac135e63179b945f0285ac7c8bc04c2e6..d409d14bc26906dd853d7bcf7f570d2d6b9efd5e 100644 (file)
@@ -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
+}