Passed
Push — master ( 66d12f...023e59 )
by Adrien
09:20
created
tests/data/query/111othermember-can-create-order.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,7 +2,7 @@
 block discarded – undo
2 2
 
3 3
 declare(strict_types=1);
4 4
 
5
- return [
5
+    return [
6 6
     [
7 7
         'query' => 'mutation {
8 8
             requestMembershipEnd
Please login to merge, or discard this patch.
bin/clean-formatted-content.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -80,13 +80,13 @@
 block discarded – undo
80 80
 function cleanFormattedContent(): void
81 81
 {
82 82
     cleanOneTable('product', [
83
-        'description' => fn ($v) => cleanRichText($v),
84
-        'content' => fn ($v) => strip_tags($v),
83
+        'description' => fn($v) => cleanRichText($v),
84
+        'content' => fn($v) => strip_tags($v),
85 85
     ]);
86 86
 
87 87
     cleanOneTable('news', [
88
-        'description' => fn ($v) => strip_tags($v),
89
-        'content' => fn ($v) => cleanRichText($v),
88
+        'description' => fn($v) => strip_tags($v),
89
+        'content' => fn($v) => cleanRichText($v),
90 90
     ]);
91 91
 }
92 92
 
Please login to merge, or discard this patch.