Completed
Push — master ( a685d6...0b4aea )
by Tim
16s
created
Classes/Domain/Repository/IndexRepository.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -214,8 +214,8 @@
 block discarded – undo
214 214
                 } elseif (\is_string($key) && \is_int($indexId)) {
215 215
                     // Table based single return value
216 216
                     $tabledIndexIds[] = [
217
-                         'table' => $key,
218
-                         'indexIds' => [$indexId],
217
+                            'table' => $key,
218
+                            'indexIds' => [$indexId],
219 219
                     ];
220 220
                 }
221 221
             }
Please login to merge, or discard this patch.
Classes/ViewHelpers/Format/LineFoldingViewHelper.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
         return preg_replace(
35 35
             // Line folding after 75 characters: RFC-5545/3-1-content-lines
36 36
             // Base on: sabre/vobject
37
-             '/(
37
+                '/(
38 38
                  (?:^.)?         # 1 additional byte in first line because of missing single space (see next line)
39 39
                  .{74}           # 75 bytes per line (1 byte is used for a single space added after every CRLF)
40 40
                  (?![\x80-\xbf]) # prevent splitting multibyte characters
Please login to merge, or discard this patch.