Passed
Pull Request — master (#3344)
by Mark
12:51
created
samples/Chart/33_Chart_create_line_dateaxis.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -181,7 +181,7 @@  discard block
 block discarded – undo
181 181
     true, // plotVisibleOnly
182 182
     DataSeries::EMPTY_AS_GAP, // displayBlanksAs
183 183
     null, // xAxisLabel
184
-    $yAxisLabel,  // yAxisLabel
184
+    $yAxisLabel, // yAxisLabel
185 185
     // added xAxis for correct date display
186 186
     $xAxis, // xAxis
187 187
     $yAxis, // yAxis
@@ -291,13 +291,13 @@  discard block
 block discarded – undo
291 291
     null, // minor_tick_mark
292 292
     $dateMinMax['min'], // minimum calculate this from the earliest data: 'Data!$A$2'
293 293
     $dateMinMax['max'], // maximum calculate this from the last data:     'Data!$A$'.($nrows+1)
294
-    $tickMarkInterval,  // majorUnit determines tickmarks & Gridlines ?
294
+    $tickMarkInterval, // majorUnit determines tickmarks & Gridlines ?
295 295
     null, // minorUnit
296 296
     null, // textRotation
297 297
     null, // hidden
298 298
     'days', // baseTimeUnit
299 299
     'months', // majorTimeUnit,
300
-    'months',   // minorTimeUnit
300
+    'months', // minorTimeUnit
301 301
 );
302 302
 
303 303
 $yAxisLabel = new Title('Value ($k)');
@@ -317,7 +317,7 @@  discard block
 block discarded – undo
317 317
     true, // plotVisibleOnly
318 318
     DataSeries::EMPTY_AS_GAP, // displayBlanksAs
319 319
     null, // xAxisLabel
320
-    $yAxisLabel,  // yAxisLabel
320
+    $yAxisLabel, // yAxisLabel
321 321
     // added xAxis for correct date display
322 322
     $xAxis, // xAxis
323 323
     $yAxis, // yAxis
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Chart/PR3163Test.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -116,8 +116,8 @@
 block discarded – undo
116 116
             true, // plotVisibleOnly
117 117
             DataSeries::EMPTY_AS_GAP, // displayBlanksAs
118 118
             null, // xAxisLabel
119
-            $yAxisLabel,  // yAxisLabel
120
-            $xAxis,  // xAxis
119
+            $yAxisLabel, // yAxisLabel
120
+            $xAxis, // xAxis
121 121
             $yAxis   // yAxis
122 122
         );
123 123
 
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Style/NumberFormat/Wizard/CurrencyTest.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -60,12 +60,12 @@
 block discarded – undo
60 60
             ["[\$€-fy-NL]\u{a0}#,##0.00;[\$€-fy-NL]\u{a0}#,##0.00-", '€', 'fy-NL'], // Trailing negative
61 61
             ["[\$€-nl-NL]\u{a0}#,##0.00;[\$€-nl-NL]\u{a0}-#,##0.00", '€', 'nl-NL'], // Sign between currency and value
62 62
             ["[\$€-nl-BE]\u{a0}#,##0.00;[\$€-nl-BE]\u{a0}-#,##0.00", '€', 'NL-BE'], // Sign between currency and value
63
-            ["#,##0.00\u{a0}[\$€-fr-BE]", '€', 'fr-be'],   // Trailing currency code
64
-            ["#,##0.00\u{a0}[\$€-el-GR]", '€', 'el-gr'],   // Trailing currency code
63
+            ["#,##0.00\u{a0}[\$€-fr-BE]", '€', 'fr-be'], // Trailing currency code
64
+            ["#,##0.00\u{a0}[\$€-el-GR]", '€', 'el-gr'], // Trailing currency code
65 65
             ['[$$-en-CA]#,##0.00', '$', 'en-ca'],
66
-            ["#,##0.00\u{a0}[\$\$-fr-CA]", '$', 'fr-ca'],   // Trailing currency code
66
+            ["#,##0.00\u{a0}[\$\$-fr-CA]", '$', 'fr-ca'], // Trailing currency code
67 67
             ['[$¥-ja-JP]#,##0', '¥', 'ja-JP'], // No decimals
68
-            ["#,##0.000\u{a0}[\$د.ب‎-ar-BH]", 'د.ب‎', 'ar-BH'],  // 3 decimals
68
+            ["#,##0.000\u{a0}[\$د.ب‎-ar-BH]", 'د.ب‎', 'ar-BH'], // 3 decimals
69 69
         ];
70 70
     }
71 71
 
Please login to merge, or discard this patch.
tests/PhpSpreadsheetTests/Style/NumberFormat/Wizard/AccountingTest.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -66,7 +66,7 @@
 block discarded – undo
66 66
             ['[$$-en-CA]#,##0.00;([$$-en-CA]#,##0.00)', '$', 'en-ca'],
67 67
             ["#,##0.00\u{a0}[\$\$-fr-CA];(#,##0.00\u{a0}[\$\$-fr-CA])", '$', 'fr-ca'],
68 68
             ['[$¥-ja-JP]#,##0;([$¥-ja-JP]#,##0)', '¥', 'ja-JP'], // No decimals
69
-            ["#,##0.000\u{a0}[\$د.ب‎-ar-BH]", 'د.ب‎', 'ar-BH'],  // 3 decimals
69
+            ["#,##0.000\u{a0}[\$د.ب‎-ar-BH]", 'د.ب‎', 'ar-BH'], // 3 decimals
70 70
         ];
71 71
     }
72 72
 
Please login to merge, or discard this patch.