]> BookStack Code Mirror - bookstack/blobdiff - app/Config/snappy.php
Updated minimum php version from 7.3 to 7.4
[bookstack] / app / Config / snappy.php
index abdec88326cb82c1e61f4fcf85ea83817f5ddbb2..8ab10a39c432baa0e6d880136a3584f4e168a021 100644 (file)
@@ -7,9 +7,8 @@
  * Configuration should be altered via the `.env` file or environment variables.
  * Do not edit this file unless you're happy to maintain any changes yourself.
  */
-
 $snappyPaperSizeMap = [
-    'a4' => 'A4',
+    'a4'     => 'A4',
     'letter' => 'Letter',
 ];
 
@@ -19,7 +18,7 @@ return [
         'binary'  => file_exists(base_path('wkhtmltopdf')) ? base_path('wkhtmltopdf') : env('WKHTMLTOPDF', false),
         'timeout' => false,
         'options' => [
-            'outline' => true,
+            'outline'   => true,
             'page-size' => $snappyPaperSizeMap[env('EXPORT_PAGE_SIZE', 'a4')] ?? 'A4',
         ],
         'env'     => [],