We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6c5f33e commit b398d4dCopy full SHA for b398d4d
phpword.ini.dist
@@ -14,6 +14,7 @@ outputEscapingEnabled = false
14
15
defaultFontName = Arial
16
defaultFontSize = 10
17
+defaultFontColor = 000000
18
19
[Paper]
20
tests/PhpWordTests/SettingsTest.php
@@ -30,6 +30,9 @@ class SettingsTest extends TestCase
30
{
31
private $compatibility;
32
33
+ /** @var string */
34
+ private $defaultFontColor;
35
+
36
private $defaultFontSize;
37
38
private $defaultFontName;
@@ -287,6 +290,7 @@ public function testLoadConfig(): void
287
290
'pdfRendererPath' => '',
288
291
'defaultFontName' => 'Arial',
289
292
'defaultFontSize' => 10,
293
+ 'defaultFontColor' => '000000',
294
'outputEscapingEnabled' => false,
295
'defaultPaper' => 'A4',
296
];
0 commit comments