@@ -116,8 +116,8 @@ |
||
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 |
@@ -397,7 +397,7 @@ discard block |
||
397 | 397 | } |
398 | 398 | } |
399 | 399 | |
400 | - private function processMemoryDrawing(BstoreContainer &$bstoreContainer, MemoryDrawing $drawing, string $renderingFunctionx): void |
|
400 | + private function processMemoryDrawing(BstoreContainer & $bstoreContainer, MemoryDrawing $drawing, string $renderingFunctionx): void |
|
401 | 401 | { |
402 | 402 | switch ($renderingFunctionx) { |
403 | 403 | case MemoryDrawing::RENDERING_JPEG: |
@@ -427,7 +427,7 @@ discard block |
||
427 | 427 | $bstoreContainer->addBSE($BSE); |
428 | 428 | } |
429 | 429 | |
430 | - private function processDrawing(BstoreContainer &$bstoreContainer, Drawing $drawing): void |
|
430 | + private function processDrawing(BstoreContainer & $bstoreContainer, Drawing $drawing): void |
|
431 | 431 | { |
432 | 432 | $blipType = 0; |
433 | 433 | $blipData = ''; |
@@ -484,7 +484,7 @@ discard block |
||
484 | 484 | } |
485 | 485 | } |
486 | 486 | |
487 | - private function processBaseDrawing(BstoreContainer &$bstoreContainer, BaseDrawing $drawing): void |
|
487 | + private function processBaseDrawing(BstoreContainer & $bstoreContainer, BaseDrawing $drawing): void |
|
488 | 488 | { |
489 | 489 | if ($drawing instanceof Drawing) { |
490 | 490 | $this->processDrawing($bstoreContainer, $drawing); |
@@ -66,7 +66,7 @@ discard block |
||
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 | |
@@ -98,7 +98,7 @@ discard block |
||
98 | 98 | ['[$$-en-CA]#,##0;([$$-en-CA]#,##0)', '$', 'en-ca'], |
99 | 99 | ["#,##0\u{a0}[\$\$-fr-CA];(#,##0\u{a0}[\$\$-fr-CA])", '$', 'fr-ca'], |
100 | 100 | ['[$¥-ja-JP]#,##0;([$¥-ja-JP]#,##0)', '¥', 'ja-JP'], // No decimals to truncate |
101 | - ["#,##0\u{a0}[\$د.ب-ar-BH]", 'د.ب', 'ar-BH'], // 3 decimals truncated to none |
|
101 | + ["#,##0\u{a0}[\$د.ب-ar-BH]", 'د.ب', 'ar-BH'], // 3 decimals truncated to none |
|
102 | 102 | ]; |
103 | 103 | } |
104 | 104 |
@@ -60,12 +60,12 @@ discard block |
||
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 | |
@@ -92,12 +92,12 @@ discard block |
||
92 | 92 | ["[\$€-fy-NL]\u{a0}#,##0;[\$€-fy-NL]\u{a0}#,##0-", '€', 'fy-NL'], // Trailing negative |
93 | 93 | ["[\$€-nl-NL]\u{a0}#,##0;[\$€-nl-NL]\u{a0}-#,##0", '€', 'nl-NL'], // Sign between currency and value |
94 | 94 | ["[\$€-nl-BE]\u{a0}#,##0;[\$€-nl-BE]\u{a0}-#,##0", '€', 'NL-BE'], // Sign between currency and value |
95 | - ["#,##0\u{a0}[\$€-fr-BE]", '€', 'fr-be'], // Trailing currency code |
|
96 | - ["#,##0\u{a0}[\$€-el-GR]", '€', 'el-gr'], // Trailing currency code |
|
95 | + ["#,##0\u{a0}[\$€-fr-BE]", '€', 'fr-be'], // Trailing currency code |
|
96 | + ["#,##0\u{a0}[\$€-el-GR]", '€', 'el-gr'], // Trailing currency code |
|
97 | 97 | ['[$$-en-CA]#,##0', '$', 'en-ca'], |
98 | - ["#,##0\u{a0}[\$\$-fr-CA]", '$', 'fr-ca'], // Trailing currency code |
|
98 | + ["#,##0\u{a0}[\$\$-fr-CA]", '$', 'fr-ca'], // Trailing currency code |
|
99 | 99 | ['[$¥-ja-JP]#,##0', '¥', 'ja-JP'], // No decimals to truncate |
100 | - ["#,##0\u{a0}[\$د.ب-ar-BH]", 'د.ب', 'ar-BH'], // 3 decimals truncated to none |
|
100 | + ["#,##0\u{a0}[\$د.ب-ar-BH]", 'د.ب', 'ar-BH'], // 3 decimals truncated to none |
|
101 | 101 | ]; |
102 | 102 | } |
103 | 103 |