Skip to content

Commit 870c453

Browse files
authored
[TASK] Mark the public class constants as @internal (MyIntervals#472)
Fixes MyIntervals#471
1 parent 3dd89b5 commit 870c453

File tree

4 files changed

+10
-0
lines changed

4 files changed

+10
-0
lines changed

src/Parsing/ParserState.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,8 @@ class ParserState
99
{
1010
/**
1111
* @var null
12+
*
13+
* @internal
1214
*/
1315
public const EOF = null;
1416

src/Property/AtRule.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,17 @@ interface AtRule extends Renderable, Commentable
1212
* we’re whitelisting the block rules and have anything else be treated as a set rule.
1313
*
1414
* @var string
15+
*
16+
* @internal
1517
*/
1618
public const BLOCK_RULES = 'media/document/supports/region-style/font-feature-values';
1719

1820
/**
1921
* … and more font-specific ones (to be used inside font-feature-values)
2022
*
2123
* @var string
24+
*
25+
* @internal
2226
*/
2327
public const SET_RULES = 'font-face/counter-style/page/swash/styleset/annotation';
2428

src/Property/KeyframeSelector.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ class KeyframeSelector extends Selector
88
* regexp for specificity calculations
99
*
1010
* @var string
11+
*
12+
* @internal
1113
*/
1214
public const SELECTOR_VALIDATION_RX = '/
1315
^(

src/Property/Selector.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,8 @@ class Selector
4949
* regexp for specificity calculations
5050
*
5151
* @var string
52+
*
53+
* @internal
5254
*/
5355
public const SELECTOR_VALIDATION_RX = '/
5456
^(

0 commit comments

Comments
 (0)