Completed
Push — develop ( fb2edf...150ad1 )
by Adrien
29:36
created
tests/data/Calculation/TextData/CODE.php 1 patch
Spacing   +17 added lines, -17 removed lines patch added patch discarded remove patch
@@ -1,21 +1,21 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return [
4
-    [ null, '#VALUE!' ],
5
-    [ '', '#VALUE!', ],
6
-    [ 'ABC', 65 ],
7
-    [ 123, 49 ],
8
-    [ true, 84 ],
9
-    [ 'DEF', 68 ],
10
-    [ 'PhpSpreadsheet', 80 ],
11
-    [ 1.5, 49 ],
12
-    [ 'Mark Baker', 77 ],
13
-    [ 'mark baker', 109 ],
14
-    [ '£125.00', 163 ],
15
-    [ "⽇", 12103],
16
-    [ 'œ', 0x153 ],
17
-    [ 'ƒ', 0x192 ],
18
-    [ '℅', 0x2105 ],
19
-    [ '∑', 0x2211 ],
20
-    [ '†', 0x2020 ],
4
+    [null, '#VALUE!'],
5
+    ['', '#VALUE!', ],
6
+    ['ABC', 65],
7
+    [123, 49],
8
+    [true, 84],
9
+    ['DEF', 68],
10
+    ['PhpSpreadsheet', 80],
11
+    [1.5, 49],
12
+    ['Mark Baker', 77],
13
+    ['mark baker', 109],
14
+    ['£125.00', 163],
15
+    ["⽇", 12103],
16
+    ['œ', 0x153],
17
+    ['ƒ', 0x192],
18
+    ['℅', 0x2105],
19
+    ['∑', 0x2211],
20
+    ['†', 0x2020],
21 21
 ];
Please login to merge, or discard this patch.
tests/data/Calculation/TextData/CHAR.php 1 patch
Spacing   +11 added lines, -11 removed lines patch added patch discarded remove patch
@@ -1,15 +1,15 @@
 block discarded – undo
1 1
 <?php
2 2
 
3 3
 return [
4
-    [ 'ABC', '#VALUE!' ],
5
-    [ -5, '#VALUE!' ],
6
-    [ 65, 'A' ],
7
-    [ 123, '{' ],
8
-    [ 126, '~' ],
9
-    [ 12103, "⽇" ],
10
-    [ 0x153, 'œ' ],
11
-    [ 0x192, 'ƒ' ],
12
-    [ 0x2105, '℅' ],
13
-    [ 0x2211, '∑' ],
14
-    [ 0x2020, '†' ],
4
+    ['ABC', '#VALUE!'],
5
+    [ -5, '#VALUE!'],
6
+    [65, 'A'],
7
+    [123, '{'],
8
+    [126, '~'],
9
+    [12103, "⽇"],
10
+    [0x153, 'œ'],
11
+    [0x192, 'ƒ'],
12
+    [0x2105, '℅'],
13
+    [0x2211, '∑'],
14
+    [0x2020, '†'],
15 15
 ];
Please login to merge, or discard this patch.