]> BookStack Code Mirror - bookstack/blobdiff - app/Application.php
Updated styles to use logical properties/values
[bookstack] / app / Application.php
index 8c56e9dac135e63179b945f0285ac7c8bc04c2e6..499fdeaa691ce8a0442b2494c9f46b09edf42f27 100644 (file)
@@ -13,7 +13,11 @@ class Application extends \Illuminate\Foundation\Application
      */
     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
+}