]> BookStack Code Mirror - bookstack/blobdiff - app/Http/Controllers/HomeController.php
Set /app PHP code to PSR-2 standard
[bookstack] / app / Http / Controllers / HomeController.php
index 164becd4dc9a04ebf68af822899251b6b0f1f4c8..b2620588f2eb5714ee7ef1f3ec1960ad8278849b 100644 (file)
@@ -56,7 +56,8 @@ class HomeController extends Controller
      * @return \Illuminate\Contracts\Routing\ResponseFactory|\Symfony\Component\HttpFoundation\Response
      * @throws \Exception
      */
-    public function getTranslations() {
+    public function getTranslations()
+    {
         $locale = app()->getLocale();
         $cacheKey = 'GLOBAL_TRANSLATIONS_' . $locale;
         if (cache()->has($cacheKey) && config('app.env') !== 'development') {
@@ -95,5 +96,4 @@ class HomeController extends Controller
     {
         return view('partials/custom-head-content');
     }
-
 }