]> BookStack Code Mirror - bookstack/blobdiff - app/Api/ApiDocsGenerator.php
Applied StyleCI changes, added php/larastan to attribution
[bookstack] / app / Api / ApiDocsGenerator.php
index 0447cd731620663832e32481a3b7dcae1edeb3f7..d130304de0327ede3cdbdcd1f8ebf81350af64d1 100644 (file)
@@ -28,7 +28,7 @@ class ApiDocsGenerator
         if (Cache::has($cacheKey) && config('app.env') === 'production') {
             $docs = Cache::get($cacheKey);
         } else {
-            $docs = (new ApiDocsGenerator)->generate();
+            $docs = (new ApiDocsGenerator())->generate();
             Cache::put($cacheKey, $docs, 60 * 24);
         }