Skip to content

Commit 5412df2

Browse files
committed
update doc
1 parent 64a6505 commit 5412df2

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/PhpWord/Style/Font.php

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,10 +33,16 @@ class Font extends AbstractStyle
3333
const UNDERLINE_DASHLONG = 'dashLong';
3434
const UNDERLINE_DASHLONGHEAVY = 'dashLongHeavy';
3535
const UNDERLINE_DOUBLE = 'dbl';
36+
/**
37+
* @deprecated use UNDERLINE_DOTHASH instead, TODO remove in version 1.0
38+
*/
3639
const UNDERLINE_DOTHASH = 'dotDash'; // Incorrect spelling, for backwards compatibility
40+
/**
41+
* @deprecated use UNDERLINE_DOTDASHHEAVY instead, TODO remove in version 1.0
42+
*/
3743
const UNDERLINE_DOTHASHHEAVY = 'dotDashHeavy'; // Incorrect spelling, for backwards compatibility
38-
const UNDERLINE_DOTDASH = 'dotDash'; // Correct spelling
39-
const UNDERLINE_DOTDASHHEAVY = 'dotDashHeavy'; // Correct spelling
44+
const UNDERLINE_DOTDASH = 'dotDash';
45+
const UNDERLINE_DOTDASHHEAVY = 'dotDashHeavy';
4046
const UNDERLINE_DOTDOTDASH = 'dotDotDash';
4147
const UNDERLINE_DOTDOTDASHHEAVY = 'dotDotDashHeavy';
4248
const UNDERLINE_DOTTED = 'dotted';

0 commit comments

Comments
 (0)