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 5aac4f2 commit 46b9880Copy full SHA for 46b9880
src/Common/EmphasisLevel.php
@@ -10,7 +10,7 @@
10
class EmphasisLevel
11
{
12
13
- const LEVEL_1 = 'LEVEL_1';
14
- const LEVEL_2 = 'LEVEL_2';
+ const LEVEL_1 = 1;
+ const LEVEL_2 = 2;
15
16
}
src/Common/HeadingLevel.php
@@ -10,11 +10,11 @@
class HeadingLevel
- const LEVEL_3 = 'LEVEL_3';
- const LEVEL_4 = 'LEVEL_4';
17
- const LEVEL_5 = 'LEVEL_5';
18
- const LEVEL_6 = 'LEVEL_6';
+ const LEVEL_3 = 3;
+ const LEVEL_4 = 4;
+ const LEVEL_5 = 5;
+ const LEVEL_6 = 6;
19
20
0 commit comments