File tree Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Expand file tree Collapse file tree 3 files changed +13
-13
lines changed Original file line number Diff line number Diff line change 25
25
*/
26
26
class Specificity
27
27
{
28
- const A_FACTOR = 100 ;
29
- const B_FACTOR = 10 ;
30
- const C_FACTOR = 1 ;
28
+ public const A_FACTOR = 100 ;
29
+ public const B_FACTOR = 10 ;
30
+ public const C_FACTOR = 1 ;
31
31
32
32
private $ a ;
33
33
private $ b ;
Original file line number Diff line number Diff line change 23
23
*/
24
24
class Token
25
25
{
26
- const TYPE_FILE_END = 'eof ' ;
27
- const TYPE_DELIMITER = 'delimiter ' ;
28
- const TYPE_WHITESPACE = 'whitespace ' ;
29
- const TYPE_IDENTIFIER = 'identifier ' ;
30
- const TYPE_HASH = 'hash ' ;
31
- const TYPE_NUMBER = 'number ' ;
32
- const TYPE_STRING = 'string ' ;
26
+ public const TYPE_FILE_END = 'eof ' ;
27
+ public const TYPE_DELIMITER = 'delimiter ' ;
28
+ public const TYPE_WHITESPACE = 'whitespace ' ;
29
+ public const TYPE_IDENTIFIER = 'identifier ' ;
30
+ public const TYPE_HASH = 'hash ' ;
31
+ public const TYPE_NUMBER = 'number ' ;
32
+ public const TYPE_STRING = 'string ' ;
33
33
34
34
private $ type ;
35
35
private $ value ;
Original file line number Diff line number Diff line change 27
27
*/
28
28
class NodeExtension extends AbstractExtension
29
29
{
30
- const ELEMENT_NAME_IN_LOWER_CASE = 1 ;
31
- const ATTRIBUTE_NAME_IN_LOWER_CASE = 2 ;
32
- const ATTRIBUTE_VALUE_IN_LOWER_CASE = 4 ;
30
+ public const ELEMENT_NAME_IN_LOWER_CASE = 1 ;
31
+ public const ATTRIBUTE_NAME_IN_LOWER_CASE = 2 ;
32
+ public const ATTRIBUTE_VALUE_IN_LOWER_CASE = 4 ;
33
33
34
34
private $ flags ;
35
35
You can’t perform that action at this time.
0 commit comments