]> source.dussan.org Git - nextcloud-server.git/commitdiff
style(config): alphabetise preview providers 38876/head
authorJoda Stößer <services+github@simjo.st>
Mon, 19 Jun 2023 00:28:01 +0000 (02:28 +0200)
committerJoda Stößer <stoesser@yay-digital.de>
Mon, 19 Jun 2023 11:32:03 +0000 (13:32 +0200)
Signed-off-by: Joda Stößer <git@simjo.st>
config/config.sample.php

index c87e1cad9fa4cc318431457c996858270cfea2ec..5301a2bf811abd00c169be4939ed0a65ef06629c 100644 (file)
@@ -1243,8 +1243,9 @@ $CONFIG = [
  * The following providers are disabled by default due to performance or privacy
  * concerns:
  *
- *  - ``OC\Preview\Illustrator``
+ *  - ``OC\Preview\Font``
  *  - ``OC\Preview\HEIC``
+ *  - ``OC\Preview\Illustrator``
  *  - ``OC\Preview\Movie``
  *  - ``OC\Preview\MSOffice2003``
  *  - ``OC\Preview\MSOffice2007``
@@ -1255,7 +1256,6 @@ $CONFIG = [
  *  - ``OC\Preview\StarOffice``
  *  - ``OC\Preview\SVG``
  *  - ``OC\Preview\TIFF``
- *  - ``OC\Preview\Font``
  *
  *
  * Defaults to the following providers:
@@ -1263,25 +1263,25 @@ $CONFIG = [
  *  - ``OC\Preview\BMP``
  *  - ``OC\Preview\GIF``
  *  - ``OC\Preview\JPEG``
+ *  - ``OC\Preview\Krita``
  *  - ``OC\Preview\MarkDown``
  *  - ``OC\Preview\MP3``
+ *  - ``OC\Preview\OpenDocument``
  *  - ``OC\Preview\PNG``
  *  - ``OC\Preview\TXT``
  *  - ``OC\Preview\XBitmap``
- *  - ``OC\Preview\OpenDocument``
- *  - ``OC\Preview\Krita``
  */
 'enabledPreviewProviders' => [
-       'OC\Preview\PNG',
-       'OC\Preview\JPEG',
-       'OC\Preview\GIF',
        'OC\Preview\BMP',
-       'OC\Preview\XBitmap',
-       'OC\Preview\MP3',
-       'OC\Preview\TXT',
+       'OC\Preview\GIF',
+       'OC\Preview\JPEG',
+       'OC\Preview\Krita',
        'OC\Preview\MarkDown',
+       'OC\Preview\MP3',
        'OC\Preview\OpenDocument',
-       'OC\Preview\Krita',
+       'OC\Preview\PNG',
+       'OC\Preview\TXT',
+       'OC\Preview\XBitmap',
 ],
 
 /**