summaryrefslogtreecommitdiff
path: root/index.php
diff options
context:
space:
mode:
Diffstat (limited to 'index.php')
-rw-r--r--index.php4
1 files changed, 3 insertions, 1 deletions
diff --git a/index.php b/index.php
index 6174da61bc..fa6e7af0e8 100644
--- a/index.php
+++ b/index.php
@@ -73,7 +73,9 @@ $request = Request::createFromGlobals();
app()->instance(Request::class, $request);
// Dummy value, until we have created our first tree.
-app()->bind(Tree::class, function () { return null; });
+app()->bind(Tree::class, function () {
+ return null;
+});
// Calculate the base URL, so we can generate absolute URLs.
$request_uri = $request->getSchemeAndHttpHost() . $request->getRequestUri();